values.schema.json 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473
  1. {
  2. "$schema": "https://json-schema.org/draft/2020-12/schema",
  3. "type": "object",
  4. "properties": {
  5. "affinity": {
  6. "type": "object"
  7. },
  8. "bitwarden-sdk-server": {
  9. "type": "object",
  10. "properties": {
  11. "enabled": {
  12. "type": "boolean"
  13. },
  14. "namespaceOverride": {
  15. "type": "string"
  16. }
  17. }
  18. },
  19. "certController": {
  20. "type": "object",
  21. "properties": {
  22. "affinity": {
  23. "type": "object"
  24. },
  25. "create": {
  26. "type": "boolean"
  27. },
  28. "deploymentAnnotations": {
  29. "type": "object"
  30. },
  31. "extraArgs": {
  32. "type": "object"
  33. },
  34. "extraEnv": {
  35. "type": "array"
  36. },
  37. "extraInitContainers": {
  38. "type": "array"
  39. },
  40. "extraVolumeMounts": {
  41. "type": "array"
  42. },
  43. "extraVolumes": {
  44. "type": "array"
  45. },
  46. "hostAliases": {
  47. "type": "array"
  48. },
  49. "hostNetwork": {
  50. "type": "boolean"
  51. },
  52. "hostUsers": {
  53. "type": [
  54. "boolean",
  55. "null"
  56. ]
  57. },
  58. "image": {
  59. "type": "object",
  60. "properties": {
  61. "flavour": {
  62. "type": "string"
  63. },
  64. "pullPolicy": {
  65. "type": "string"
  66. },
  67. "repository": {
  68. "type": "string"
  69. },
  70. "tag": {
  71. "type": "string"
  72. }
  73. }
  74. },
  75. "imagePullSecrets": {
  76. "type": "array"
  77. },
  78. "livenessProbe": {
  79. "type": "object",
  80. "properties": {
  81. "enabled": {
  82. "type": "boolean"
  83. },
  84. "failureThreshold": {
  85. "type": "integer"
  86. },
  87. "initialDelaySeconds": {
  88. "type": "integer"
  89. },
  90. "periodSeconds": {
  91. "type": "integer"
  92. },
  93. "port": {
  94. "type": [
  95. "string",
  96. "integer"
  97. ]
  98. },
  99. "successThreshold": {
  100. "type": "integer"
  101. },
  102. "timeoutSeconds": {
  103. "type": "integer"
  104. }
  105. }
  106. },
  107. "log": {
  108. "type": "object",
  109. "properties": {
  110. "level": {
  111. "type": "string"
  112. },
  113. "timeEncoding": {
  114. "type": "string"
  115. }
  116. }
  117. },
  118. "metrics": {
  119. "type": "object",
  120. "properties": {
  121. "listen": {
  122. "type": "object",
  123. "properties": {
  124. "auth": {
  125. "type": "object",
  126. "properties": {
  127. "enabled": {
  128. "type": "boolean"
  129. }
  130. }
  131. },
  132. "port": {
  133. "type": "integer"
  134. },
  135. "secure": {
  136. "type": "object",
  137. "properties": {
  138. "certDir": {
  139. "type": "string"
  140. },
  141. "certFile": {
  142. "type": "string"
  143. },
  144. "enabled": {
  145. "type": "boolean"
  146. },
  147. "keyFile": {
  148. "type": "string"
  149. }
  150. }
  151. }
  152. }
  153. },
  154. "service": {
  155. "type": "object",
  156. "properties": {
  157. "annotations": {
  158. "type": "object"
  159. },
  160. "enabled": {
  161. "type": "boolean"
  162. },
  163. "port": {
  164. "type": "integer"
  165. }
  166. }
  167. }
  168. }
  169. },
  170. "networkPolicy": {
  171. "type": "object",
  172. "properties": {
  173. "egress": {
  174. "type": "array"
  175. },
  176. "enabled": {
  177. "type": "boolean"
  178. },
  179. "ingress": {
  180. "type": "array",
  181. "items": {
  182. "type": "object",
  183. "properties": {
  184. "ports": {
  185. "type": "array",
  186. "items": {
  187. "type": "object",
  188. "properties": {
  189. "port": {
  190. "type": [
  191. "string",
  192. "integer"
  193. ]
  194. },
  195. "protocol": {
  196. "type": "string"
  197. }
  198. }
  199. }
  200. }
  201. }
  202. }
  203. }
  204. }
  205. },
  206. "nodeSelector": {
  207. "type": "object"
  208. },
  209. "podAnnotations": {
  210. "type": "object"
  211. },
  212. "podDisruptionBudget": {
  213. "type": "object",
  214. "properties": {
  215. "enabled": {
  216. "type": "boolean"
  217. },
  218. "minAvailable": {
  219. "type": [
  220. "integer",
  221. "string"
  222. ]
  223. },
  224. "nameOverride": {
  225. "type": "string"
  226. }
  227. }
  228. },
  229. "podLabels": {
  230. "type": "object"
  231. },
  232. "podSecurityContext": {
  233. "type": "object",
  234. "properties": {
  235. "enabled": {
  236. "type": "boolean"
  237. }
  238. }
  239. },
  240. "priorityClassName": {
  241. "type": "string"
  242. },
  243. "rbac": {
  244. "type": "object",
  245. "properties": {
  246. "create": {
  247. "type": "boolean"
  248. }
  249. }
  250. },
  251. "readinessProbe": {
  252. "type": "object",
  253. "properties": {
  254. "address": {
  255. "type": "string"
  256. },
  257. "enabled": {
  258. "type": "boolean"
  259. },
  260. "failureThreshold": {
  261. "type": "integer"
  262. },
  263. "initialDelaySeconds": {
  264. "type": "integer"
  265. },
  266. "periodSeconds": {
  267. "type": "integer"
  268. },
  269. "port": {
  270. "type": [
  271. "string",
  272. "integer"
  273. ]
  274. },
  275. "successThreshold": {
  276. "type": "integer"
  277. },
  278. "timeoutSeconds": {
  279. "type": "integer"
  280. }
  281. }
  282. },
  283. "replicaCount": {
  284. "type": "integer"
  285. },
  286. "requeueInterval": {
  287. "type": "string"
  288. },
  289. "resources": {
  290. "type": "object"
  291. },
  292. "revisionHistoryLimit": {
  293. "type": "integer"
  294. },
  295. "securityContext": {
  296. "type": "object",
  297. "properties": {
  298. "allowPrivilegeEscalation": {
  299. "type": "boolean"
  300. },
  301. "capabilities": {
  302. "type": "object",
  303. "properties": {
  304. "drop": {
  305. "type": "array",
  306. "items": {
  307. "type": "string"
  308. }
  309. }
  310. }
  311. },
  312. "enabled": {
  313. "type": "boolean"
  314. },
  315. "readOnlyRootFilesystem": {
  316. "type": "boolean"
  317. },
  318. "runAsNonRoot": {
  319. "type": "boolean"
  320. },
  321. "runAsUser": {
  322. "type": "integer"
  323. },
  324. "seccompProfile": {
  325. "type": "object",
  326. "properties": {
  327. "type": {
  328. "type": "string"
  329. }
  330. }
  331. }
  332. }
  333. },
  334. "serviceAccount": {
  335. "type": "object",
  336. "properties": {
  337. "annotations": {
  338. "type": "object"
  339. },
  340. "automount": {
  341. "type": "boolean"
  342. },
  343. "create": {
  344. "type": "boolean"
  345. },
  346. "extraLabels": {
  347. "type": "object"
  348. },
  349. "name": {
  350. "type": "string"
  351. }
  352. }
  353. },
  354. "startupProbe": {
  355. "type": "object",
  356. "properties": {
  357. "enabled": {
  358. "type": "boolean"
  359. },
  360. "failureThreshold": {
  361. "type": "integer"
  362. },
  363. "initialDelaySeconds": {
  364. "type": "integer"
  365. },
  366. "periodSeconds": {
  367. "type": "integer"
  368. }
  369. }
  370. },
  371. "strategy": {
  372. "type": "object"
  373. },
  374. "tolerations": {
  375. "type": "array"
  376. },
  377. "topologySpreadConstraints": {
  378. "type": "array"
  379. }
  380. }
  381. },
  382. "commonLabels": {
  383. "type": "object"
  384. },
  385. "concurrent": {
  386. "type": "integer"
  387. },
  388. "controllerClass": {
  389. "type": "string"
  390. },
  391. "crds": {
  392. "type": "object",
  393. "properties": {
  394. "annotations": {
  395. "type": "object"
  396. },
  397. "conversion": {
  398. "type": "object",
  399. "properties": {
  400. "enabled": {
  401. "type": "boolean"
  402. }
  403. }
  404. },
  405. "createClusterExternalSecret": {
  406. "type": "boolean"
  407. },
  408. "createClusterGenerator": {
  409. "type": "boolean"
  410. },
  411. "createClusterPushSecret": {
  412. "type": "boolean"
  413. },
  414. "createClusterSecretStore": {
  415. "type": "boolean"
  416. },
  417. "createPushSecret": {
  418. "type": "boolean"
  419. },
  420. "createSecretStore": {
  421. "type": "boolean"
  422. },
  423. "unsafeServeV1Beta1": {
  424. "type": "boolean"
  425. }
  426. }
  427. },
  428. "createOperator": {
  429. "type": "boolean"
  430. },
  431. "deploymentAnnotations": {
  432. "type": "object"
  433. },
  434. "dnsConfig": {
  435. "type": "object"
  436. },
  437. "dnsPolicy": {
  438. "type": "string"
  439. },
  440. "enableHTTP2": {
  441. "type": "boolean"
  442. },
  443. "extendedMetricLabels": {
  444. "type": "boolean"
  445. },
  446. "extraArgs": {
  447. "type": "object"
  448. },
  449. "extraContainers": {
  450. "type": "array"
  451. },
  452. "extraEnv": {
  453. "type": "array"
  454. },
  455. "extraInitContainers": {
  456. "type": "array"
  457. },
  458. "extraObjects": {
  459. "type": "array"
  460. },
  461. "extraVolumeMounts": {
  462. "type": "array"
  463. },
  464. "extraVolumes": {
  465. "type": "array"
  466. },
  467. "fullnameOverride": {
  468. "type": "string"
  469. },
  470. "genericTargets": {
  471. "type": "object",
  472. "properties": {
  473. "enabled": {
  474. "type": "boolean"
  475. },
  476. "resources": {
  477. "type": "array"
  478. }
  479. }
  480. },
  481. "global": {
  482. "type": "object",
  483. "properties": {
  484. "affinity": {
  485. "type": "object"
  486. },
  487. "compatibility": {
  488. "type": "object",
  489. "properties": {
  490. "openshift": {
  491. "type": "object",
  492. "properties": {
  493. "adaptSecurityContext": {
  494. "type": "string"
  495. }
  496. }
  497. }
  498. }
  499. },
  500. "hostAliases": {
  501. "type": "array"
  502. },
  503. "imagePullSecrets": {
  504. "type": "array"
  505. },
  506. "nodeSelector": {
  507. "type": "object"
  508. },
  509. "podAnnotations": {
  510. "type": "object"
  511. },
  512. "podLabels": {
  513. "type": "object"
  514. },
  515. "repository": {
  516. "type": "string"
  517. },
  518. "tolerations": {
  519. "type": "array"
  520. },
  521. "topologySpreadConstraints": {
  522. "type": "array"
  523. }
  524. }
  525. },
  526. "grafanaDashboard": {
  527. "type": "object",
  528. "properties": {
  529. "annotations": {
  530. "type": "object"
  531. },
  532. "enabled": {
  533. "type": "boolean"
  534. },
  535. "extraLabels": {
  536. "type": "object"
  537. },
  538. "sidecarLabel": {
  539. "type": "string"
  540. },
  541. "sidecarLabelValue": {
  542. "type": "string"
  543. }
  544. }
  545. },
  546. "hostAliases": {
  547. "type": "array"
  548. },
  549. "hostNetwork": {
  550. "type": "boolean"
  551. },
  552. "hostUsers": {
  553. "type": [
  554. "boolean",
  555. "null"
  556. ]
  557. },
  558. "image": {
  559. "type": "object",
  560. "properties": {
  561. "flavour": {
  562. "type": "string"
  563. },
  564. "pullPolicy": {
  565. "type": "string"
  566. },
  567. "repository": {
  568. "type": "string"
  569. },
  570. "tag": {
  571. "type": "string"
  572. }
  573. }
  574. },
  575. "imagePullSecrets": {
  576. "type": "array"
  577. },
  578. "installCRDs": {
  579. "type": "boolean"
  580. },
  581. "leaderElect": {
  582. "type": "boolean"
  583. },
  584. "leaderElectionID": {
  585. "type": "string"
  586. },
  587. "leaderElectionLeaseDuration": {
  588. "type": "string"
  589. },
  590. "leaderElectionRenewDeadline": {
  591. "type": "string"
  592. },
  593. "leaderElectionRetryPeriod": {
  594. "type": "string"
  595. },
  596. "livenessProbe": {
  597. "type": "object",
  598. "properties": {
  599. "enabled": {
  600. "type": "boolean"
  601. },
  602. "spec": {
  603. "type": "object",
  604. "properties": {
  605. "address": {
  606. "type": "string"
  607. },
  608. "failureThreshold": {
  609. "type": "integer"
  610. },
  611. "httpGet": {
  612. "type": "object",
  613. "properties": {
  614. "path": {
  615. "type": "string"
  616. },
  617. "port": {
  618. "type": [
  619. "string",
  620. "integer"
  621. ]
  622. }
  623. }
  624. },
  625. "initialDelaySeconds": {
  626. "type": "integer"
  627. },
  628. "periodSeconds": {
  629. "type": "integer"
  630. },
  631. "port": {
  632. "type": "integer"
  633. },
  634. "successThreshold": {
  635. "type": "integer"
  636. },
  637. "timeoutSeconds": {
  638. "type": "integer"
  639. }
  640. }
  641. }
  642. }
  643. },
  644. "log": {
  645. "type": "object",
  646. "properties": {
  647. "level": {
  648. "type": "string"
  649. },
  650. "timeEncoding": {
  651. "type": "string"
  652. }
  653. }
  654. },
  655. "metrics": {
  656. "type": "object",
  657. "properties": {
  658. "listen": {
  659. "type": "object",
  660. "properties": {
  661. "auth": {
  662. "type": "object",
  663. "properties": {
  664. "enabled": {
  665. "type": "boolean"
  666. }
  667. }
  668. },
  669. "port": {
  670. "type": "integer"
  671. },
  672. "secure": {
  673. "type": "object",
  674. "properties": {
  675. "certDir": {
  676. "type": "string"
  677. },
  678. "certFile": {
  679. "type": "string"
  680. },
  681. "enabled": {
  682. "type": "boolean"
  683. },
  684. "keyFile": {
  685. "type": "string"
  686. }
  687. }
  688. }
  689. }
  690. },
  691. "service": {
  692. "type": "object",
  693. "properties": {
  694. "annotations": {
  695. "type": "object"
  696. },
  697. "enabled": {
  698. "type": "boolean"
  699. },
  700. "port": {
  701. "type": "integer"
  702. }
  703. }
  704. }
  705. }
  706. },
  707. "nameOverride": {
  708. "type": "string"
  709. },
  710. "namespaceOverride": {
  711. "type": "string"
  712. },
  713. "networkPolicy": {
  714. "type": "object",
  715. "properties": {
  716. "egress": {
  717. "type": "array"
  718. },
  719. "enabled": {
  720. "type": "boolean"
  721. },
  722. "ingress": {
  723. "type": "array",
  724. "items": {
  725. "type": "object",
  726. "properties": {
  727. "ports": {
  728. "type": "array",
  729. "items": {
  730. "type": "object",
  731. "properties": {
  732. "port": {
  733. "type": [
  734. "string",
  735. "integer"
  736. ]
  737. },
  738. "protocol": {
  739. "type": "string"
  740. }
  741. }
  742. }
  743. }
  744. }
  745. }
  746. }
  747. }
  748. },
  749. "nodeSelector": {
  750. "type": "object"
  751. },
  752. "openshiftFinalizers": {
  753. "type": "boolean"
  754. },
  755. "podAnnotations": {
  756. "type": "object"
  757. },
  758. "podDisruptionBudget": {
  759. "type": "object",
  760. "properties": {
  761. "enabled": {
  762. "type": "boolean"
  763. },
  764. "minAvailable": {
  765. "type": [
  766. "integer",
  767. "string"
  768. ]
  769. },
  770. "nameOverride": {
  771. "type": "string"
  772. }
  773. }
  774. },
  775. "podLabels": {
  776. "type": "object"
  777. },
  778. "podSecurityContext": {
  779. "type": "object",
  780. "properties": {
  781. "enabled": {
  782. "type": "boolean"
  783. }
  784. }
  785. },
  786. "podSpecExtra": {
  787. "type": "object"
  788. },
  789. "priorityClassName": {
  790. "type": "string"
  791. },
  792. "processClusterExternalSecret": {
  793. "type": "boolean"
  794. },
  795. "processClusterGenerator": {
  796. "type": "boolean"
  797. },
  798. "processClusterPushSecret": {
  799. "type": "boolean"
  800. },
  801. "processClusterStore": {
  802. "type": "boolean"
  803. },
  804. "processPushSecret": {
  805. "type": "boolean"
  806. },
  807. "processSecretStore": {
  808. "type": "boolean"
  809. },
  810. "rbac": {
  811. "type": "object",
  812. "properties": {
  813. "aggregateToAdmin": {
  814. "type": "boolean"
  815. },
  816. "aggregateToEdit": {
  817. "type": "boolean"
  818. },
  819. "aggregateToView": {
  820. "type": "boolean"
  821. },
  822. "create": {
  823. "type": "boolean"
  824. },
  825. "serviceAccountTokenCreate": {
  826. "type": "boolean"
  827. },
  828. "servicebindings": {
  829. "type": "object",
  830. "properties": {
  831. "create": {
  832. "type": "boolean"
  833. }
  834. }
  835. }
  836. }
  837. },
  838. "readinessProbe": {
  839. "type": "object",
  840. "properties": {
  841. "enabled": {
  842. "type": "boolean"
  843. },
  844. "spec": {
  845. "type": "object",
  846. "properties": {
  847. "failureThreshold": {
  848. "type": "integer"
  849. },
  850. "httpGet": {
  851. "type": "object",
  852. "properties": {
  853. "path": {
  854. "type": "string"
  855. },
  856. "port": {
  857. "type": [
  858. "string",
  859. "integer"
  860. ]
  861. }
  862. }
  863. },
  864. "initialDelaySeconds": {
  865. "type": "integer"
  866. },
  867. "periodSeconds": {
  868. "type": "integer"
  869. },
  870. "successThreshold": {
  871. "type": "integer"
  872. },
  873. "timeoutSeconds": {
  874. "type": "integer"
  875. }
  876. }
  877. }
  878. }
  879. },
  880. "replicaCount": {
  881. "type": "integer"
  882. },
  883. "resources": {
  884. "type": "object"
  885. },
  886. "revisionHistoryLimit": {
  887. "type": "integer"
  888. },
  889. "scopedNamespace": {
  890. "type": "string"
  891. },
  892. "scopedRBAC": {
  893. "type": "boolean"
  894. },
  895. "securityContext": {
  896. "type": "object",
  897. "properties": {
  898. "allowPrivilegeEscalation": {
  899. "type": "boolean"
  900. },
  901. "capabilities": {
  902. "type": "object",
  903. "properties": {
  904. "drop": {
  905. "type": "array",
  906. "items": {
  907. "type": "string"
  908. }
  909. }
  910. }
  911. },
  912. "enabled": {
  913. "type": "boolean"
  914. },
  915. "readOnlyRootFilesystem": {
  916. "type": "boolean"
  917. },
  918. "runAsNonRoot": {
  919. "type": "boolean"
  920. },
  921. "runAsUser": {
  922. "type": "integer"
  923. },
  924. "seccompProfile": {
  925. "type": "object",
  926. "properties": {
  927. "type": {
  928. "type": "string"
  929. }
  930. }
  931. }
  932. }
  933. },
  934. "service": {
  935. "type": "object",
  936. "properties": {
  937. "ipFamilies": {
  938. "type": "array"
  939. },
  940. "ipFamilyPolicy": {
  941. "type": "string"
  942. }
  943. }
  944. },
  945. "serviceAccount": {
  946. "type": "object",
  947. "properties": {
  948. "annotations": {
  949. "type": "object"
  950. },
  951. "automount": {
  952. "type": "boolean"
  953. },
  954. "create": {
  955. "type": "boolean"
  956. },
  957. "extraLabels": {
  958. "type": "object"
  959. },
  960. "name": {
  961. "type": "string"
  962. }
  963. }
  964. },
  965. "serviceMonitor": {
  966. "type": "object",
  967. "properties": {
  968. "additionalLabels": {
  969. "type": "object"
  970. },
  971. "enabled": {
  972. "type": "boolean"
  973. },
  974. "honorLabels": {
  975. "type": "boolean"
  976. },
  977. "interval": {
  978. "type": "string"
  979. },
  980. "metricRelabelings": {
  981. "type": "array"
  982. },
  983. "namespace": {
  984. "type": "string"
  985. },
  986. "relabelings": {
  987. "type": "array"
  988. },
  989. "renderMode": {
  990. "type": "string",
  991. "enum": [
  992. "skipIfMissing",
  993. "failIfMissing",
  994. "alwaysRender"
  995. ]
  996. },
  997. "scrapeTimeout": {
  998. "type": "string"
  999. }
  1000. }
  1001. },
  1002. "storeRequeueInterval": {
  1003. "type": "string"
  1004. },
  1005. "strategy": {
  1006. "type": "object"
  1007. },
  1008. "systemAuthDelegator": {
  1009. "type": "boolean"
  1010. },
  1011. "tolerations": {
  1012. "type": "array"
  1013. },
  1014. "topologySpreadConstraints": {
  1015. "type": "array"
  1016. },
  1017. "vault": {
  1018. "type": "object",
  1019. "properties": {
  1020. "enableTokenCache": {
  1021. "type": "boolean"
  1022. },
  1023. "tokenCacheSize": {
  1024. "type": "integer"
  1025. }
  1026. }
  1027. },
  1028. "webhook": {
  1029. "type": "object",
  1030. "properties": {
  1031. "affinity": {
  1032. "type": "object"
  1033. },
  1034. "annotations": {
  1035. "type": "object"
  1036. },
  1037. "certCheckInterval": {
  1038. "type": "string"
  1039. },
  1040. "certDir": {
  1041. "type": "string"
  1042. },
  1043. "certManager": {
  1044. "type": "object",
  1045. "properties": {
  1046. "addInjectorAnnotations": {
  1047. "type": "boolean"
  1048. },
  1049. "cert": {
  1050. "type": "object",
  1051. "properties": {
  1052. "annotations": {
  1053. "type": "object"
  1054. },
  1055. "create": {
  1056. "type": "boolean"
  1057. },
  1058. "duration": {
  1059. "type": "string"
  1060. },
  1061. "issuerRef": {
  1062. "type": "object",
  1063. "properties": {
  1064. "group": {
  1065. "type": "string"
  1066. },
  1067. "kind": {
  1068. "type": "string"
  1069. },
  1070. "name": {
  1071. "type": "string"
  1072. }
  1073. }
  1074. },
  1075. "privateKey": {
  1076. "type": "object"
  1077. },
  1078. "renewBefore": {
  1079. "type": "string"
  1080. },
  1081. "revisionHistoryLimit": {
  1082. "type": "integer"
  1083. },
  1084. "signatureAlgorithm": {
  1085. "type": "string"
  1086. }
  1087. }
  1088. },
  1089. "enabled": {
  1090. "type": "boolean"
  1091. }
  1092. }
  1093. },
  1094. "create": {
  1095. "type": "boolean"
  1096. },
  1097. "deploymentAnnotations": {
  1098. "type": "object"
  1099. },
  1100. "extraArgs": {
  1101. "type": "object"
  1102. },
  1103. "extraEnv": {
  1104. "type": "array"
  1105. },
  1106. "extraInitContainers": {
  1107. "type": "array"
  1108. },
  1109. "extraVolumeMounts": {
  1110. "type": "array"
  1111. },
  1112. "extraVolumes": {
  1113. "type": "array"
  1114. },
  1115. "failurePolicy": {
  1116. "type": "string"
  1117. },
  1118. "hostAliases": {
  1119. "type": "array"
  1120. },
  1121. "hostNetwork": {
  1122. "type": "boolean"
  1123. },
  1124. "hostUsers": {
  1125. "type": [
  1126. "boolean",
  1127. "null"
  1128. ]
  1129. },
  1130. "image": {
  1131. "type": "object",
  1132. "properties": {
  1133. "flavour": {
  1134. "type": "string"
  1135. },
  1136. "pullPolicy": {
  1137. "type": "string"
  1138. },
  1139. "repository": {
  1140. "type": "string"
  1141. },
  1142. "tag": {
  1143. "type": "string"
  1144. }
  1145. }
  1146. },
  1147. "imagePullSecrets": {
  1148. "type": "array"
  1149. },
  1150. "livenessProbe": {
  1151. "type": "object",
  1152. "properties": {
  1153. "enabled": {
  1154. "type": "boolean"
  1155. },
  1156. "failureThreshold": {
  1157. "type": "integer"
  1158. },
  1159. "initialDelaySeconds": {
  1160. "type": "integer"
  1161. },
  1162. "periodSeconds": {
  1163. "type": "integer"
  1164. },
  1165. "port": {
  1166. "type": [
  1167. "string",
  1168. "integer"
  1169. ]
  1170. },
  1171. "successThreshold": {
  1172. "type": "integer"
  1173. },
  1174. "timeoutSeconds": {
  1175. "type": "integer"
  1176. }
  1177. }
  1178. },
  1179. "log": {
  1180. "type": "object",
  1181. "properties": {
  1182. "level": {
  1183. "type": "string"
  1184. },
  1185. "timeEncoding": {
  1186. "type": "string"
  1187. }
  1188. }
  1189. },
  1190. "lookaheadInterval": {
  1191. "type": "string"
  1192. },
  1193. "metrics": {
  1194. "type": "object",
  1195. "properties": {
  1196. "listen": {
  1197. "type": "object",
  1198. "properties": {
  1199. "auth": {
  1200. "type": "object",
  1201. "properties": {
  1202. "enabled": {
  1203. "type": "boolean"
  1204. }
  1205. }
  1206. },
  1207. "port": {
  1208. "type": "integer"
  1209. },
  1210. "secure": {
  1211. "type": "object",
  1212. "properties": {
  1213. "certDir": {
  1214. "type": "string"
  1215. },
  1216. "certFile": {
  1217. "type": "string"
  1218. },
  1219. "enabled": {
  1220. "type": "boolean"
  1221. },
  1222. "keyFile": {
  1223. "type": "string"
  1224. }
  1225. }
  1226. }
  1227. }
  1228. },
  1229. "service": {
  1230. "type": "object",
  1231. "properties": {
  1232. "annotations": {
  1233. "type": "object"
  1234. },
  1235. "enabled": {
  1236. "type": "boolean"
  1237. },
  1238. "port": {
  1239. "type": "integer"
  1240. }
  1241. }
  1242. }
  1243. }
  1244. },
  1245. "networkPolicy": {
  1246. "type": "object",
  1247. "properties": {
  1248. "egress": {
  1249. "type": "array"
  1250. },
  1251. "enabled": {
  1252. "type": "boolean"
  1253. },
  1254. "ingress": {
  1255. "type": "array",
  1256. "items": {
  1257. "type": "object",
  1258. "properties": {
  1259. "ports": {
  1260. "type": "array",
  1261. "items": {
  1262. "type": "object",
  1263. "properties": {
  1264. "port": {
  1265. "type": [
  1266. "string",
  1267. "integer"
  1268. ]
  1269. },
  1270. "protocol": {
  1271. "type": "string"
  1272. }
  1273. }
  1274. }
  1275. }
  1276. }
  1277. }
  1278. }
  1279. }
  1280. },
  1281. "nodeSelector": {
  1282. "type": "object"
  1283. },
  1284. "podAnnotations": {
  1285. "type": "object"
  1286. },
  1287. "podDisruptionBudget": {
  1288. "type": "object",
  1289. "properties": {
  1290. "enabled": {
  1291. "type": "boolean"
  1292. },
  1293. "minAvailable": {
  1294. "type": [
  1295. "integer",
  1296. "string"
  1297. ]
  1298. },
  1299. "nameOverride": {
  1300. "type": "string"
  1301. }
  1302. }
  1303. },
  1304. "podLabels": {
  1305. "type": "object"
  1306. },
  1307. "podSecurityContext": {
  1308. "type": "object",
  1309. "properties": {
  1310. "enabled": {
  1311. "type": "boolean"
  1312. }
  1313. }
  1314. },
  1315. "port": {
  1316. "type": "integer"
  1317. },
  1318. "priorityClassName": {
  1319. "type": "string"
  1320. },
  1321. "readinessProbe": {
  1322. "type": "object",
  1323. "properties": {
  1324. "address": {
  1325. "type": "string"
  1326. },
  1327. "enabled": {
  1328. "type": "boolean"
  1329. },
  1330. "failureThreshold": {
  1331. "type": "integer"
  1332. },
  1333. "initialDelaySeconds": {
  1334. "type": "integer"
  1335. },
  1336. "periodSeconds": {
  1337. "type": "integer"
  1338. },
  1339. "port": {
  1340. "type": [
  1341. "string",
  1342. "integer"
  1343. ]
  1344. },
  1345. "successThreshold": {
  1346. "type": "integer"
  1347. },
  1348. "timeoutSeconds": {
  1349. "type": "integer"
  1350. }
  1351. }
  1352. },
  1353. "replicaCount": {
  1354. "type": "integer"
  1355. },
  1356. "resources": {
  1357. "type": "object"
  1358. },
  1359. "revisionHistoryLimit": {
  1360. "type": "integer"
  1361. },
  1362. "secretAnnotations": {
  1363. "type": "object"
  1364. },
  1365. "securityContext": {
  1366. "type": "object",
  1367. "properties": {
  1368. "allowPrivilegeEscalation": {
  1369. "type": "boolean"
  1370. },
  1371. "capabilities": {
  1372. "type": "object",
  1373. "properties": {
  1374. "drop": {
  1375. "type": "array",
  1376. "items": {
  1377. "type": "string"
  1378. }
  1379. }
  1380. }
  1381. },
  1382. "enabled": {
  1383. "type": "boolean"
  1384. },
  1385. "readOnlyRootFilesystem": {
  1386. "type": "boolean"
  1387. },
  1388. "runAsNonRoot": {
  1389. "type": "boolean"
  1390. },
  1391. "runAsUser": {
  1392. "type": "integer"
  1393. },
  1394. "seccompProfile": {
  1395. "type": "object",
  1396. "properties": {
  1397. "type": {
  1398. "type": "string"
  1399. }
  1400. }
  1401. }
  1402. }
  1403. },
  1404. "service": {
  1405. "type": "object",
  1406. "properties": {
  1407. "annotations": {
  1408. "type": "object"
  1409. },
  1410. "enabled": {
  1411. "type": "boolean"
  1412. },
  1413. "labels": {
  1414. "type": "object"
  1415. },
  1416. "loadBalancerIP": {
  1417. "type": "string"
  1418. },
  1419. "type": {
  1420. "type": "string"
  1421. }
  1422. }
  1423. },
  1424. "serviceAccount": {
  1425. "type": "object",
  1426. "properties": {
  1427. "annotations": {
  1428. "type": "object"
  1429. },
  1430. "automount": {
  1431. "type": "boolean"
  1432. },
  1433. "create": {
  1434. "type": "boolean"
  1435. },
  1436. "extraLabels": {
  1437. "type": "object"
  1438. },
  1439. "name": {
  1440. "type": "string"
  1441. }
  1442. }
  1443. },
  1444. "startupProbe": {
  1445. "type": "object",
  1446. "properties": {
  1447. "enabled": {
  1448. "type": "boolean"
  1449. },
  1450. "failureThreshold": {
  1451. "type": "integer"
  1452. },
  1453. "initialDelaySeconds": {
  1454. "type": "integer"
  1455. },
  1456. "periodSeconds": {
  1457. "type": "integer"
  1458. }
  1459. }
  1460. },
  1461. "strategy": {
  1462. "type": "object"
  1463. },
  1464. "tolerations": {
  1465. "type": "array"
  1466. },
  1467. "topologySpreadConstraints": {
  1468. "type": "array"
  1469. }
  1470. }
  1471. }
  1472. }
  1473. }