values.schema.json 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494
  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. "tolerations": {
  384. "type": "array"
  385. },
  386. "topologySpreadConstraints": {
  387. "type": "array"
  388. }
  389. }
  390. },
  391. "commonLabels": {
  392. "type": "object"
  393. },
  394. "concurrent": {
  395. "type": "integer"
  396. },
  397. "controllerClass": {
  398. "type": "string"
  399. },
  400. "crds": {
  401. "type": "object",
  402. "properties": {
  403. "annotations": {
  404. "type": "object"
  405. },
  406. "conversion": {
  407. "type": "object",
  408. "properties": {
  409. "enabled": {
  410. "type": "boolean"
  411. }
  412. }
  413. },
  414. "createClusterExternalSecret": {
  415. "type": "boolean"
  416. },
  417. "createClusterGenerator": {
  418. "type": "boolean"
  419. },
  420. "createClusterPushSecret": {
  421. "type": "boolean"
  422. },
  423. "createClusterSecretStore": {
  424. "type": "boolean"
  425. },
  426. "createPushSecret": {
  427. "type": "boolean"
  428. },
  429. "createSecretStore": {
  430. "type": "boolean"
  431. },
  432. "unsafeServeV1Beta1": {
  433. "type": "boolean"
  434. }
  435. }
  436. },
  437. "createOperator": {
  438. "type": "boolean"
  439. },
  440. "deploymentAnnotations": {
  441. "type": "object"
  442. },
  443. "dnsConfig": {
  444. "type": "object"
  445. },
  446. "dnsPolicy": {
  447. "type": "string"
  448. },
  449. "enableHTTP2": {
  450. "type": "boolean"
  451. },
  452. "extendedMetricLabels": {
  453. "type": "boolean"
  454. },
  455. "extraArgs": {
  456. "type": "object"
  457. },
  458. "extraContainers": {
  459. "type": "array"
  460. },
  461. "extraEnv": {
  462. "type": "array"
  463. },
  464. "extraInitContainers": {
  465. "type": "array"
  466. },
  467. "extraObjects": {
  468. "type": "array"
  469. },
  470. "extraVolumeMounts": {
  471. "type": "array"
  472. },
  473. "extraVolumes": {
  474. "type": "array"
  475. },
  476. "fullnameOverride": {
  477. "type": "string"
  478. },
  479. "genericTargets": {
  480. "type": "object",
  481. "properties": {
  482. "enabled": {
  483. "type": "boolean"
  484. },
  485. "resources": {
  486. "type": "array"
  487. }
  488. }
  489. },
  490. "global": {
  491. "type": "object",
  492. "properties": {
  493. "affinity": {
  494. "type": "object"
  495. },
  496. "compatibility": {
  497. "type": "object",
  498. "properties": {
  499. "openshift": {
  500. "type": "object",
  501. "properties": {
  502. "adaptSecurityContext": {
  503. "type": "string"
  504. }
  505. }
  506. }
  507. }
  508. },
  509. "hostAliases": {
  510. "type": "array"
  511. },
  512. "imagePullSecrets": {
  513. "type": "array"
  514. },
  515. "nodeSelector": {
  516. "type": "object"
  517. },
  518. "podAnnotations": {
  519. "type": "object"
  520. },
  521. "podLabels": {
  522. "type": "object"
  523. },
  524. "repository": {
  525. "type": "string"
  526. },
  527. "tolerations": {
  528. "type": "array"
  529. },
  530. "topologySpreadConstraints": {
  531. "type": "array"
  532. }
  533. }
  534. },
  535. "grafanaDashboard": {
  536. "type": "object",
  537. "properties": {
  538. "annotations": {
  539. "type": "object"
  540. },
  541. "enabled": {
  542. "type": "boolean"
  543. },
  544. "extraLabels": {
  545. "type": "object"
  546. },
  547. "sidecarLabel": {
  548. "type": "string"
  549. },
  550. "sidecarLabelValue": {
  551. "type": "string"
  552. }
  553. }
  554. },
  555. "hostAliases": {
  556. "type": "array"
  557. },
  558. "hostNetwork": {
  559. "type": "boolean"
  560. },
  561. "hostUsers": {
  562. "type": [
  563. "boolean",
  564. "null"
  565. ]
  566. },
  567. "image": {
  568. "type": "object",
  569. "properties": {
  570. "flavour": {
  571. "type": "string"
  572. },
  573. "pullPolicy": {
  574. "type": "string"
  575. },
  576. "repository": {
  577. "type": "string"
  578. },
  579. "tag": {
  580. "type": "string"
  581. }
  582. }
  583. },
  584. "imagePullSecrets": {
  585. "type": "array"
  586. },
  587. "installCRDs": {
  588. "type": "boolean"
  589. },
  590. "leaderElect": {
  591. "type": "boolean"
  592. },
  593. "leaderElectionID": {
  594. "type": "string"
  595. },
  596. "leaderElectionLeaseDuration": {
  597. "type": "string"
  598. },
  599. "leaderElectionRenewDeadline": {
  600. "type": "string"
  601. },
  602. "leaderElectionRetryPeriod": {
  603. "type": "string"
  604. },
  605. "livenessProbe": {
  606. "type": "object",
  607. "properties": {
  608. "enabled": {
  609. "type": "boolean"
  610. },
  611. "spec": {
  612. "type": "object",
  613. "properties": {
  614. "address": {
  615. "type": "string"
  616. },
  617. "failureThreshold": {
  618. "type": "integer"
  619. },
  620. "httpGet": {
  621. "type": "object",
  622. "properties": {
  623. "path": {
  624. "type": "string"
  625. },
  626. "port": {
  627. "type": [
  628. "string",
  629. "integer"
  630. ]
  631. }
  632. }
  633. },
  634. "initialDelaySeconds": {
  635. "type": "integer"
  636. },
  637. "periodSeconds": {
  638. "type": "integer"
  639. },
  640. "port": {
  641. "type": "integer"
  642. },
  643. "successThreshold": {
  644. "type": "integer"
  645. },
  646. "timeoutSeconds": {
  647. "type": "integer"
  648. }
  649. }
  650. }
  651. }
  652. },
  653. "log": {
  654. "type": "object",
  655. "properties": {
  656. "level": {
  657. "type": "string"
  658. },
  659. "timeEncoding": {
  660. "type": "string"
  661. }
  662. }
  663. },
  664. "metrics": {
  665. "type": "object",
  666. "properties": {
  667. "listen": {
  668. "type": "object",
  669. "properties": {
  670. "auth": {
  671. "type": "object",
  672. "properties": {
  673. "enabled": {
  674. "type": "boolean"
  675. }
  676. }
  677. },
  678. "port": {
  679. "type": "integer"
  680. },
  681. "secure": {
  682. "type": "object",
  683. "properties": {
  684. "certDir": {
  685. "type": "string"
  686. },
  687. "certFile": {
  688. "type": "string"
  689. },
  690. "enabled": {
  691. "type": "boolean"
  692. },
  693. "keyFile": {
  694. "type": "string"
  695. }
  696. }
  697. }
  698. }
  699. },
  700. "service": {
  701. "type": "object",
  702. "properties": {
  703. "annotations": {
  704. "type": "object"
  705. },
  706. "enabled": {
  707. "type": "boolean"
  708. },
  709. "port": {
  710. "type": "integer"
  711. }
  712. }
  713. }
  714. }
  715. },
  716. "nameOverride": {
  717. "type": "string"
  718. },
  719. "namespaceOverride": {
  720. "type": "string"
  721. },
  722. "networkPolicy": {
  723. "type": "object",
  724. "properties": {
  725. "egress": {
  726. "type": "array"
  727. },
  728. "enabled": {
  729. "type": "boolean"
  730. },
  731. "ingress": {
  732. "type": "array",
  733. "items": {
  734. "type": "object",
  735. "properties": {
  736. "ports": {
  737. "type": "array",
  738. "items": {
  739. "type": "object",
  740. "properties": {
  741. "port": {
  742. "type": [
  743. "string",
  744. "integer"
  745. ]
  746. },
  747. "protocol": {
  748. "type": "string"
  749. }
  750. }
  751. }
  752. }
  753. }
  754. }
  755. }
  756. }
  757. },
  758. "nodeSelector": {
  759. "type": "object"
  760. },
  761. "openshiftFinalizers": {
  762. "type": "boolean"
  763. },
  764. "podAnnotations": {
  765. "type": "object"
  766. },
  767. "podDisruptionBudget": {
  768. "type": "object",
  769. "properties": {
  770. "enabled": {
  771. "type": "boolean"
  772. },
  773. "minAvailable": {
  774. "type": [
  775. "integer",
  776. "string"
  777. ]
  778. },
  779. "nameOverride": {
  780. "type": "string"
  781. }
  782. }
  783. },
  784. "podLabels": {
  785. "type": "object"
  786. },
  787. "podSecurityContext": {
  788. "type": "object",
  789. "properties": {
  790. "enabled": {
  791. "type": "boolean"
  792. }
  793. }
  794. },
  795. "podSpecExtra": {
  796. "type": "object"
  797. },
  798. "priorityClassName": {
  799. "type": "string"
  800. },
  801. "processClusterExternalSecret": {
  802. "type": "boolean"
  803. },
  804. "processClusterGenerator": {
  805. "type": "boolean"
  806. },
  807. "processClusterPushSecret": {
  808. "type": "boolean"
  809. },
  810. "processClusterStore": {
  811. "type": "boolean"
  812. },
  813. "processPushSecret": {
  814. "type": "boolean"
  815. },
  816. "processSecretStore": {
  817. "type": "boolean"
  818. },
  819. "rbac": {
  820. "type": "object",
  821. "properties": {
  822. "aggregateToAdmin": {
  823. "type": "boolean"
  824. },
  825. "aggregateToEdit": {
  826. "type": "boolean"
  827. },
  828. "aggregateToView": {
  829. "type": "boolean"
  830. },
  831. "create": {
  832. "type": "boolean"
  833. },
  834. "serviceAccountTokenCreate": {
  835. "type": "boolean"
  836. },
  837. "servicebindings": {
  838. "type": "object",
  839. "properties": {
  840. "create": {
  841. "type": "boolean"
  842. }
  843. }
  844. }
  845. }
  846. },
  847. "readinessProbe": {
  848. "type": "object",
  849. "properties": {
  850. "enabled": {
  851. "type": "boolean"
  852. },
  853. "spec": {
  854. "type": "object",
  855. "properties": {
  856. "failureThreshold": {
  857. "type": "integer"
  858. },
  859. "httpGet": {
  860. "type": "object",
  861. "properties": {
  862. "path": {
  863. "type": "string"
  864. },
  865. "port": {
  866. "type": [
  867. "string",
  868. "integer"
  869. ]
  870. }
  871. }
  872. },
  873. "initialDelaySeconds": {
  874. "type": "integer"
  875. },
  876. "periodSeconds": {
  877. "type": "integer"
  878. },
  879. "successThreshold": {
  880. "type": "integer"
  881. },
  882. "timeoutSeconds": {
  883. "type": "integer"
  884. }
  885. }
  886. }
  887. }
  888. },
  889. "replicaCount": {
  890. "type": "integer"
  891. },
  892. "resources": {
  893. "type": "object"
  894. },
  895. "revisionHistoryLimit": {
  896. "type": "integer"
  897. },
  898. "runtimeClassName": {
  899. "type": "string"
  900. },
  901. "schedulerName": {
  902. "type": "string"
  903. },
  904. "scopedNamespace": {
  905. "type": "string"
  906. },
  907. "scopedRBAC": {
  908. "type": "boolean"
  909. },
  910. "securityContext": {
  911. "type": "object",
  912. "properties": {
  913. "allowPrivilegeEscalation": {
  914. "type": "boolean"
  915. },
  916. "capabilities": {
  917. "type": "object",
  918. "properties": {
  919. "drop": {
  920. "type": "array",
  921. "items": {
  922. "type": "string"
  923. }
  924. }
  925. }
  926. },
  927. "enabled": {
  928. "type": "boolean"
  929. },
  930. "readOnlyRootFilesystem": {
  931. "type": "boolean"
  932. },
  933. "runAsNonRoot": {
  934. "type": "boolean"
  935. },
  936. "runAsUser": {
  937. "type": "integer"
  938. },
  939. "seccompProfile": {
  940. "type": "object",
  941. "properties": {
  942. "type": {
  943. "type": "string"
  944. }
  945. }
  946. }
  947. }
  948. },
  949. "service": {
  950. "type": "object",
  951. "properties": {
  952. "ipFamilies": {
  953. "type": "array"
  954. },
  955. "ipFamilyPolicy": {
  956. "type": "string"
  957. }
  958. }
  959. },
  960. "serviceAccount": {
  961. "type": "object",
  962. "properties": {
  963. "annotations": {
  964. "type": "object"
  965. },
  966. "automount": {
  967. "type": "boolean"
  968. },
  969. "create": {
  970. "type": "boolean"
  971. },
  972. "extraLabels": {
  973. "type": "object"
  974. },
  975. "name": {
  976. "type": "string"
  977. }
  978. }
  979. },
  980. "serviceMonitor": {
  981. "type": "object",
  982. "properties": {
  983. "additionalLabels": {
  984. "type": "object"
  985. },
  986. "enabled": {
  987. "type": "boolean"
  988. },
  989. "honorLabels": {
  990. "type": "boolean"
  991. },
  992. "interval": {
  993. "type": "string"
  994. },
  995. "metricRelabelings": {
  996. "type": "array"
  997. },
  998. "namespace": {
  999. "type": "string"
  1000. },
  1001. "relabelings": {
  1002. "type": "array"
  1003. },
  1004. "renderMode": {
  1005. "type": "string",
  1006. "enum": [
  1007. "skipIfMissing",
  1008. "failIfMissing",
  1009. "alwaysRender"
  1010. ]
  1011. },
  1012. "scrapeTimeout": {
  1013. "type": "string"
  1014. }
  1015. }
  1016. },
  1017. "storeRequeueInterval": {
  1018. "type": "string"
  1019. },
  1020. "strategy": {
  1021. "type": "object"
  1022. },
  1023. "systemAuthDelegator": {
  1024. "type": "boolean"
  1025. },
  1026. "tolerations": {
  1027. "type": "array"
  1028. },
  1029. "topologySpreadConstraints": {
  1030. "type": "array"
  1031. },
  1032. "vault": {
  1033. "type": "object",
  1034. "properties": {
  1035. "enableTokenCache": {
  1036. "type": "boolean"
  1037. },
  1038. "tokenCacheSize": {
  1039. "type": "integer"
  1040. }
  1041. }
  1042. },
  1043. "webhook": {
  1044. "type": "object",
  1045. "properties": {
  1046. "affinity": {
  1047. "type": "object"
  1048. },
  1049. "annotations": {
  1050. "type": "object"
  1051. },
  1052. "certCheckInterval": {
  1053. "type": "string"
  1054. },
  1055. "certDir": {
  1056. "type": "string"
  1057. },
  1058. "certManager": {
  1059. "type": "object",
  1060. "properties": {
  1061. "addInjectorAnnotations": {
  1062. "type": "boolean"
  1063. },
  1064. "cert": {
  1065. "type": "object",
  1066. "properties": {
  1067. "annotations": {
  1068. "type": "object"
  1069. },
  1070. "create": {
  1071. "type": "boolean"
  1072. },
  1073. "duration": {
  1074. "type": "string"
  1075. },
  1076. "issuerRef": {
  1077. "type": "object",
  1078. "properties": {
  1079. "group": {
  1080. "type": "string"
  1081. },
  1082. "kind": {
  1083. "type": "string"
  1084. },
  1085. "name": {
  1086. "type": "string"
  1087. }
  1088. }
  1089. },
  1090. "privateKey": {
  1091. "type": "object"
  1092. },
  1093. "renewBefore": {
  1094. "type": "string"
  1095. },
  1096. "revisionHistoryLimit": {
  1097. "type": "integer"
  1098. },
  1099. "signatureAlgorithm": {
  1100. "type": "string"
  1101. }
  1102. }
  1103. },
  1104. "enabled": {
  1105. "type": "boolean"
  1106. }
  1107. }
  1108. },
  1109. "create": {
  1110. "type": "boolean"
  1111. },
  1112. "deploymentAnnotations": {
  1113. "type": "object"
  1114. },
  1115. "extraArgs": {
  1116. "type": "object"
  1117. },
  1118. "extraEnv": {
  1119. "type": "array"
  1120. },
  1121. "extraInitContainers": {
  1122. "type": "array"
  1123. },
  1124. "extraVolumeMounts": {
  1125. "type": "array"
  1126. },
  1127. "extraVolumes": {
  1128. "type": "array"
  1129. },
  1130. "failurePolicy": {
  1131. "type": "string"
  1132. },
  1133. "hostAliases": {
  1134. "type": "array"
  1135. },
  1136. "hostNetwork": {
  1137. "type": "boolean"
  1138. },
  1139. "hostUsers": {
  1140. "type": [
  1141. "boolean",
  1142. "null"
  1143. ]
  1144. },
  1145. "image": {
  1146. "type": "object",
  1147. "properties": {
  1148. "flavour": {
  1149. "type": "string"
  1150. },
  1151. "pullPolicy": {
  1152. "type": "string"
  1153. },
  1154. "repository": {
  1155. "type": "string"
  1156. },
  1157. "tag": {
  1158. "type": "string"
  1159. }
  1160. }
  1161. },
  1162. "imagePullSecrets": {
  1163. "type": "array"
  1164. },
  1165. "livenessProbe": {
  1166. "type": "object",
  1167. "properties": {
  1168. "enabled": {
  1169. "type": "boolean"
  1170. },
  1171. "failureThreshold": {
  1172. "type": "integer"
  1173. },
  1174. "initialDelaySeconds": {
  1175. "type": "integer"
  1176. },
  1177. "periodSeconds": {
  1178. "type": "integer"
  1179. },
  1180. "port": {
  1181. "type": [
  1182. "string",
  1183. "integer"
  1184. ]
  1185. },
  1186. "successThreshold": {
  1187. "type": "integer"
  1188. },
  1189. "timeoutSeconds": {
  1190. "type": "integer"
  1191. }
  1192. }
  1193. },
  1194. "log": {
  1195. "type": "object",
  1196. "properties": {
  1197. "level": {
  1198. "type": "string"
  1199. },
  1200. "timeEncoding": {
  1201. "type": "string"
  1202. }
  1203. }
  1204. },
  1205. "lookaheadInterval": {
  1206. "type": "string"
  1207. },
  1208. "metrics": {
  1209. "type": "object",
  1210. "properties": {
  1211. "listen": {
  1212. "type": "object",
  1213. "properties": {
  1214. "auth": {
  1215. "type": "object",
  1216. "properties": {
  1217. "enabled": {
  1218. "type": "boolean"
  1219. }
  1220. }
  1221. },
  1222. "port": {
  1223. "type": "integer"
  1224. },
  1225. "secure": {
  1226. "type": "object",
  1227. "properties": {
  1228. "certDir": {
  1229. "type": "string"
  1230. },
  1231. "certFile": {
  1232. "type": "string"
  1233. },
  1234. "enabled": {
  1235. "type": "boolean"
  1236. },
  1237. "keyFile": {
  1238. "type": "string"
  1239. }
  1240. }
  1241. }
  1242. }
  1243. },
  1244. "service": {
  1245. "type": "object",
  1246. "properties": {
  1247. "annotations": {
  1248. "type": "object"
  1249. },
  1250. "enabled": {
  1251. "type": "boolean"
  1252. },
  1253. "port": {
  1254. "type": "integer"
  1255. }
  1256. }
  1257. }
  1258. }
  1259. },
  1260. "networkPolicy": {
  1261. "type": "object",
  1262. "properties": {
  1263. "egress": {
  1264. "type": "array"
  1265. },
  1266. "enabled": {
  1267. "type": "boolean"
  1268. },
  1269. "ingress": {
  1270. "type": "array",
  1271. "items": {
  1272. "type": "object",
  1273. "properties": {
  1274. "ports": {
  1275. "type": "array",
  1276. "items": {
  1277. "type": "object",
  1278. "properties": {
  1279. "port": {
  1280. "type": [
  1281. "string",
  1282. "integer"
  1283. ]
  1284. },
  1285. "protocol": {
  1286. "type": "string"
  1287. }
  1288. }
  1289. }
  1290. }
  1291. }
  1292. }
  1293. }
  1294. }
  1295. },
  1296. "nodeSelector": {
  1297. "type": "object"
  1298. },
  1299. "podAnnotations": {
  1300. "type": "object"
  1301. },
  1302. "podDisruptionBudget": {
  1303. "type": "object",
  1304. "properties": {
  1305. "enabled": {
  1306. "type": "boolean"
  1307. },
  1308. "minAvailable": {
  1309. "type": [
  1310. "integer",
  1311. "string"
  1312. ]
  1313. },
  1314. "nameOverride": {
  1315. "type": "string"
  1316. }
  1317. }
  1318. },
  1319. "podLabels": {
  1320. "type": "object"
  1321. },
  1322. "podSecurityContext": {
  1323. "type": "object",
  1324. "properties": {
  1325. "enabled": {
  1326. "type": "boolean"
  1327. }
  1328. }
  1329. },
  1330. "port": {
  1331. "type": "integer"
  1332. },
  1333. "priorityClassName": {
  1334. "type": "string"
  1335. },
  1336. "readinessProbe": {
  1337. "type": "object",
  1338. "properties": {
  1339. "address": {
  1340. "type": "string"
  1341. },
  1342. "enabled": {
  1343. "type": "boolean"
  1344. },
  1345. "failureThreshold": {
  1346. "type": "integer"
  1347. },
  1348. "initialDelaySeconds": {
  1349. "type": "integer"
  1350. },
  1351. "periodSeconds": {
  1352. "type": "integer"
  1353. },
  1354. "port": {
  1355. "type": [
  1356. "string",
  1357. "integer"
  1358. ]
  1359. },
  1360. "successThreshold": {
  1361. "type": "integer"
  1362. },
  1363. "timeoutSeconds": {
  1364. "type": "integer"
  1365. }
  1366. }
  1367. },
  1368. "replicaCount": {
  1369. "type": "integer"
  1370. },
  1371. "resources": {
  1372. "type": "object"
  1373. },
  1374. "revisionHistoryLimit": {
  1375. "type": "integer"
  1376. },
  1377. "runtimeClassName": {
  1378. "type": "string"
  1379. },
  1380. "schedulerName": {
  1381. "type": "string"
  1382. },
  1383. "secretAnnotations": {
  1384. "type": "object"
  1385. },
  1386. "securityContext": {
  1387. "type": "object",
  1388. "properties": {
  1389. "allowPrivilegeEscalation": {
  1390. "type": "boolean"
  1391. },
  1392. "capabilities": {
  1393. "type": "object",
  1394. "properties": {
  1395. "drop": {
  1396. "type": "array",
  1397. "items": {
  1398. "type": "string"
  1399. }
  1400. }
  1401. }
  1402. },
  1403. "enabled": {
  1404. "type": "boolean"
  1405. },
  1406. "readOnlyRootFilesystem": {
  1407. "type": "boolean"
  1408. },
  1409. "runAsNonRoot": {
  1410. "type": "boolean"
  1411. },
  1412. "runAsUser": {
  1413. "type": "integer"
  1414. },
  1415. "seccompProfile": {
  1416. "type": "object",
  1417. "properties": {
  1418. "type": {
  1419. "type": "string"
  1420. }
  1421. }
  1422. }
  1423. }
  1424. },
  1425. "service": {
  1426. "type": "object",
  1427. "properties": {
  1428. "annotations": {
  1429. "type": "object"
  1430. },
  1431. "enabled": {
  1432. "type": "boolean"
  1433. },
  1434. "labels": {
  1435. "type": "object"
  1436. },
  1437. "loadBalancerIP": {
  1438. "type": "string"
  1439. },
  1440. "type": {
  1441. "type": "string"
  1442. }
  1443. }
  1444. },
  1445. "serviceAccount": {
  1446. "type": "object",
  1447. "properties": {
  1448. "annotations": {
  1449. "type": "object"
  1450. },
  1451. "automount": {
  1452. "type": "boolean"
  1453. },
  1454. "create": {
  1455. "type": "boolean"
  1456. },
  1457. "extraLabels": {
  1458. "type": "object"
  1459. },
  1460. "name": {
  1461. "type": "string"
  1462. }
  1463. }
  1464. },
  1465. "startupProbe": {
  1466. "type": "object",
  1467. "properties": {
  1468. "enabled": {
  1469. "type": "boolean"
  1470. },
  1471. "failureThreshold": {
  1472. "type": "integer"
  1473. },
  1474. "initialDelaySeconds": {
  1475. "type": "integer"
  1476. },
  1477. "periodSeconds": {
  1478. "type": "integer"
  1479. }
  1480. }
  1481. },
  1482. "strategy": {
  1483. "type": "object"
  1484. },
  1485. "tolerations": {
  1486. "type": "array"
  1487. },
  1488. "topologySpreadConstraints": {
  1489. "type": "array"
  1490. }
  1491. }
  1492. }
  1493. }
  1494. }