values.schema.json 50 KB

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