values.schema.json 43 KB

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