-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathvalues.schema.json
More file actions
2135 lines (2135 loc) · 95.1 KB
/
values.schema.json
File metadata and controls
2135 lines (2135 loc) · 95.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$defs": {
"helm-values": {
"additionalProperties": false,
"properties": {
"acmesolver": {
"$ref": "#/$defs/helm-values.acmesolver"
},
"affinity": {
"$ref": "#/$defs/helm-values.affinity"
},
"approveSignerNames": {
"$ref": "#/$defs/helm-values.approveSignerNames"
},
"automountServiceAccountToken": {
"$ref": "#/$defs/helm-values.automountServiceAccountToken"
},
"cainjector": {
"$ref": "#/$defs/helm-values.cainjector"
},
"clusterResourceNamespace": {
"$ref": "#/$defs/helm-values.clusterResourceNamespace"
},
"config": {
"$ref": "#/$defs/helm-values.config"
},
"containerSecurityContext": {
"$ref": "#/$defs/helm-values.containerSecurityContext"
},
"crds": {
"$ref": "#/$defs/helm-values.crds"
},
"creator": {
"$ref": "#/$defs/helm-values.creator"
},
"deploymentAnnotations": {
"$ref": "#/$defs/helm-values.deploymentAnnotations"
},
"disableAutoApproval": {
"$ref": "#/$defs/helm-values.disableAutoApproval"
},
"dns01RecursiveNameservers": {
"$ref": "#/$defs/helm-values.dns01RecursiveNameservers"
},
"dns01RecursiveNameserversOnly": {
"$ref": "#/$defs/helm-values.dns01RecursiveNameserversOnly"
},
"enableCertificateOwnerRef": {
"$ref": "#/$defs/helm-values.enableCertificateOwnerRef"
},
"enableServiceLinks": {
"$ref": "#/$defs/helm-values.enableServiceLinks"
},
"enabled": {
"$ref": "#/$defs/helm-values.enabled"
},
"extraArgs": {
"$ref": "#/$defs/helm-values.extraArgs"
},
"extraEnv": {
"$ref": "#/$defs/helm-values.extraEnv"
},
"extraObjects": {
"$ref": "#/$defs/helm-values.extraObjects"
},
"featureGates": {
"$ref": "#/$defs/helm-values.featureGates"
},
"fullnameOverride": {
"$ref": "#/$defs/helm-values.fullnameOverride"
},
"global": {
"$ref": "#/$defs/helm-values.global"
},
"hostAliases": {
"$ref": "#/$defs/helm-values.hostAliases"
},
"http_proxy": {
"$ref": "#/$defs/helm-values.http_proxy"
},
"https_proxy": {
"$ref": "#/$defs/helm-values.https_proxy"
},
"image": {
"$ref": "#/$defs/helm-values.image"
},
"ingressShim": {
"$ref": "#/$defs/helm-values.ingressShim"
},
"installCRDs": {
"$ref": "#/$defs/helm-values.installCRDs"
},
"livenessProbe": {
"$ref": "#/$defs/helm-values.livenessProbe"
},
"maxConcurrentChallenges": {
"$ref": "#/$defs/helm-values.maxConcurrentChallenges"
},
"nameOverride": {
"$ref": "#/$defs/helm-values.nameOverride"
},
"namespace": {
"$ref": "#/$defs/helm-values.namespace"
},
"no_proxy": {
"$ref": "#/$defs/helm-values.no_proxy"
},
"nodeSelector": {
"$ref": "#/$defs/helm-values.nodeSelector"
},
"podAnnotations": {
"$ref": "#/$defs/helm-values.podAnnotations"
},
"podDisruptionBudget": {
"$ref": "#/$defs/helm-values.podDisruptionBudget"
},
"podDnsConfig": {
"$ref": "#/$defs/helm-values.podDnsConfig"
},
"podDnsPolicy": {
"$ref": "#/$defs/helm-values.podDnsPolicy"
},
"podLabels": {
"$ref": "#/$defs/helm-values.podLabels"
},
"prometheus": {
"$ref": "#/$defs/helm-values.prometheus"
},
"replicaCount": {
"$ref": "#/$defs/helm-values.replicaCount"
},
"resources": {
"$ref": "#/$defs/helm-values.resources"
},
"securityContext": {
"$ref": "#/$defs/helm-values.securityContext"
},
"serviceAccount": {
"$ref": "#/$defs/helm-values.serviceAccount"
},
"serviceAnnotations": {
"$ref": "#/$defs/helm-values.serviceAnnotations"
},
"serviceIPFamilies": {
"$ref": "#/$defs/helm-values.serviceIPFamilies"
},
"serviceIPFamilyPolicy": {
"$ref": "#/$defs/helm-values.serviceIPFamilyPolicy"
},
"serviceLabels": {
"$ref": "#/$defs/helm-values.serviceLabels"
},
"startupapicheck": {
"$ref": "#/$defs/helm-values.startupapicheck"
},
"strategy": {
"$ref": "#/$defs/helm-values.strategy"
},
"tolerations": {
"$ref": "#/$defs/helm-values.tolerations"
},
"topologySpreadConstraints": {
"$ref": "#/$defs/helm-values.topologySpreadConstraints"
},
"volumeMounts": {
"$ref": "#/$defs/helm-values.volumeMounts"
},
"volumes": {
"$ref": "#/$defs/helm-values.volumes"
},
"webhook": {
"$ref": "#/$defs/helm-values.webhook"
}
},
"type": "object"
},
"helm-values.acmesolver": {
"additionalProperties": false,
"properties": {
"image": {
"$ref": "#/$defs/helm-values.acmesolver.image"
}
},
"type": "object"
},
"helm-values.acmesolver.image": {
"additionalProperties": false,
"properties": {
"digest": {
"$ref": "#/$defs/helm-values.acmesolver.image.digest"
},
"pullPolicy": {
"$ref": "#/$defs/helm-values.acmesolver.image.pullPolicy"
},
"registry": {
"$ref": "#/$defs/helm-values.acmesolver.image.registry"
},
"repository": {
"$ref": "#/$defs/helm-values.acmesolver.image.repository"
},
"tag": {
"$ref": "#/$defs/helm-values.acmesolver.image.tag"
}
},
"type": "object"
},
"helm-values.acmesolver.image.digest": {
"description": "Setting a digest will override any tag.",
"type": "string"
},
"helm-values.acmesolver.image.pullPolicy": {
"default": "IfNotPresent",
"description": "Kubernetes imagePullPolicy on Deployment.",
"type": "string"
},
"helm-values.acmesolver.image.registry": {
"description": "The container registry to pull the acmesolver image from.",
"type": "string"
},
"helm-values.acmesolver.image.repository": {
"default": "quay.io/jetstack/cert-manager-acmesolver",
"description": "The container image for the cert-manager acmesolver.",
"type": "string"
},
"helm-values.acmesolver.image.tag": {
"description": "Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion is used.",
"type": "string"
},
"helm-values.affinity": {
"default": {},
"description": "A Kubernetes Affinity, if required. For more information, see [Affinity v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#affinity-v1-core).\n\nFor example:\naffinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: foo.bar.com/role\n operator: In\n values:\n - master",
"type": "object"
},
"helm-values.approveSignerNames": {
"default": [
"issuers.cert-manager.io/*",
"clusterissuers.cert-manager.io/*"
],
"description": "List of signer names that cert-manager will approve by default. CertificateRequests referencing these signer names will be auto-approved by cert-manager. Defaults to just approving the cert-manager.io Issuer and ClusterIssuer issuers. When set to an empty array, ALL issuers will be auto-approved by cert-manager. To disable the auto-approval, because eg. you are using approver-policy, you can enable 'disableAutoApproval'.\nref: https://cert-manager.io/docs/concepts/certificaterequest/#approval",
"items": {},
"type": "array"
},
"helm-values.automountServiceAccountToken": {
"description": "Automounting API credentials for a particular pod.",
"type": "boolean"
},
"helm-values.cainjector": {
"additionalProperties": false,
"properties": {
"affinity": {
"$ref": "#/$defs/helm-values.cainjector.affinity"
},
"automountServiceAccountToken": {
"$ref": "#/$defs/helm-values.cainjector.automountServiceAccountToken"
},
"config": {
"$ref": "#/$defs/helm-values.cainjector.config"
},
"containerSecurityContext": {
"$ref": "#/$defs/helm-values.cainjector.containerSecurityContext"
},
"deploymentAnnotations": {
"$ref": "#/$defs/helm-values.cainjector.deploymentAnnotations"
},
"enableServiceLinks": {
"$ref": "#/$defs/helm-values.cainjector.enableServiceLinks"
},
"enabled": {
"$ref": "#/$defs/helm-values.cainjector.enabled"
},
"extraArgs": {
"$ref": "#/$defs/helm-values.cainjector.extraArgs"
},
"extraEnv": {
"$ref": "#/$defs/helm-values.cainjector.extraEnv"
},
"featureGates": {
"$ref": "#/$defs/helm-values.cainjector.featureGates"
},
"image": {
"$ref": "#/$defs/helm-values.cainjector.image"
},
"nodeSelector": {
"$ref": "#/$defs/helm-values.cainjector.nodeSelector"
},
"podAnnotations": {
"$ref": "#/$defs/helm-values.cainjector.podAnnotations"
},
"podDisruptionBudget": {
"$ref": "#/$defs/helm-values.cainjector.podDisruptionBudget"
},
"podLabels": {
"$ref": "#/$defs/helm-values.cainjector.podLabels"
},
"replicaCount": {
"$ref": "#/$defs/helm-values.cainjector.replicaCount"
},
"resources": {
"$ref": "#/$defs/helm-values.cainjector.resources"
},
"securityContext": {
"$ref": "#/$defs/helm-values.cainjector.securityContext"
},
"serviceAccount": {
"$ref": "#/$defs/helm-values.cainjector.serviceAccount"
},
"serviceAnnotations": {
"$ref": "#/$defs/helm-values.cainjector.serviceAnnotations"
},
"serviceLabels": {
"$ref": "#/$defs/helm-values.cainjector.serviceLabels"
},
"strategy": {
"$ref": "#/$defs/helm-values.cainjector.strategy"
},
"tolerations": {
"$ref": "#/$defs/helm-values.cainjector.tolerations"
},
"topologySpreadConstraints": {
"$ref": "#/$defs/helm-values.cainjector.topologySpreadConstraints"
},
"volumeMounts": {
"$ref": "#/$defs/helm-values.cainjector.volumeMounts"
},
"volumes": {
"$ref": "#/$defs/helm-values.cainjector.volumes"
}
},
"type": "object"
},
"helm-values.cainjector.affinity": {
"default": {},
"description": "A Kubernetes Affinity, if required. For more information, see [Affinity v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#affinity-v1-core).\n\nFor example:\naffinity:\n nodeAffinity:\n requiredDuringSchedulingIgnoredDuringExecution:\n nodeSelectorTerms:\n - matchExpressions:\n - key: foo.bar.com/role\n operator: In\n values:\n - master",
"type": "object"
},
"helm-values.cainjector.automountServiceAccountToken": {
"description": "Automounting API credentials for a particular pod.",
"type": "boolean"
},
"helm-values.cainjector.config": {
"default": {},
"description": "This is used to configure options for the cainjector pod. It allows setting options that are usually provided via flags.\n\nIf `apiVersion` and `kind` are unspecified they default to the current latest version (currently `cainjector.config.cert-manager.io/v1alpha1`). You can pin the version by specifying the `apiVersion` yourself.\n\nFor example:\napiVersion: cainjector.config.cert-manager.io/v1alpha1\nkind: CAInjectorConfiguration\nlogging:\n verbosity: 2\n format: text\nleaderElectionConfig:\n namespace: kube-system\n# Configure the metrics server for TLS\n# See https://cert-manager.io/docs/devops-tips/prometheus-metrics/#tls\nmetricsTLSConfig:\n dynamic:\n secretNamespace: \"cert-manager\"\n secretName: \"cert-manager-metrics-ca\"\n dnsNames:\n - cert-manager-metrics",
"type": "object"
},
"helm-values.cainjector.containerSecurityContext": {
"default": {
"allowPrivilegeEscalation": false,
"capabilities": {
"drop": [
"ALL"
]
},
"readOnlyRootFilesystem": true
},
"description": "Container Security Context to be set on the cainjector component container. For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).",
"type": "object"
},
"helm-values.cainjector.deploymentAnnotations": {
"description": "Optional additional annotations to add to the cainjector Deployment.",
"type": "object"
},
"helm-values.cainjector.enableServiceLinks": {
"default": false,
"description": "enableServiceLinks indicates whether information about services should be injected into the pod's environment variables, matching the syntax of Docker links.",
"type": "boolean"
},
"helm-values.cainjector.enabled": {
"default": true,
"description": "Create the CA Injector deployment",
"type": "boolean"
},
"helm-values.cainjector.extraArgs": {
"default": [],
"description": "Additional command line flags to pass to cert-manager cainjector binary. To see all available flags run `docker run quay.io/jetstack/cert-manager-cainjector:<version> --help`.",
"items": {},
"type": "array"
},
"helm-values.cainjector.extraEnv": {
"default": [],
"description": "Additional environment variables to pass to cert-manager cainjector binary.\nFor example:\nextraEnv:\n- name: SOME_VAR\n value: 'some value'",
"items": {},
"type": "array"
},
"helm-values.cainjector.featureGates": {
"default": "",
"description": "Comma separated list of feature gates that should be enabled on the cainjector pod.",
"type": "string"
},
"helm-values.cainjector.image": {
"additionalProperties": false,
"properties": {
"digest": {
"$ref": "#/$defs/helm-values.cainjector.image.digest"
},
"pullPolicy": {
"$ref": "#/$defs/helm-values.cainjector.image.pullPolicy"
},
"registry": {
"$ref": "#/$defs/helm-values.cainjector.image.registry"
},
"repository": {
"$ref": "#/$defs/helm-values.cainjector.image.repository"
},
"tag": {
"$ref": "#/$defs/helm-values.cainjector.image.tag"
}
},
"type": "object"
},
"helm-values.cainjector.image.digest": {
"description": "Setting a digest will override any tag.",
"type": "string"
},
"helm-values.cainjector.image.pullPolicy": {
"default": "IfNotPresent",
"description": "Kubernetes imagePullPolicy on Deployment.",
"type": "string"
},
"helm-values.cainjector.image.registry": {
"description": "The container registry to pull the cainjector image from.",
"type": "string"
},
"helm-values.cainjector.image.repository": {
"default": "quay.io/jetstack/cert-manager-cainjector",
"description": "The container image for the cert-manager cainjector",
"type": "string"
},
"helm-values.cainjector.image.tag": {
"description": "Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion will be used.",
"type": "string"
},
"helm-values.cainjector.nodeSelector": {
"default": {
"kubernetes.io/os": "linux"
},
"description": "The nodeSelector on Pods tells Kubernetes to schedule Pods on the nodes with matching labels. For more information, see [Assigning Pods to Nodes](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).\n\nThis default ensures that Pods are only scheduled to Linux nodes. It prevents Pods being scheduled to Windows nodes in a mixed OS cluster.",
"type": "object"
},
"helm-values.cainjector.podAnnotations": {
"description": "Optional additional annotations to add to the cainjector Pods.",
"type": "object"
},
"helm-values.cainjector.podDisruptionBudget": {
"additionalProperties": false,
"properties": {
"enabled": {
"$ref": "#/$defs/helm-values.cainjector.podDisruptionBudget.enabled"
},
"maxUnavailable": {
"$ref": "#/$defs/helm-values.cainjector.podDisruptionBudget.maxUnavailable"
},
"minAvailable": {
"$ref": "#/$defs/helm-values.cainjector.podDisruptionBudget.minAvailable"
}
},
"type": "object"
},
"helm-values.cainjector.podDisruptionBudget.enabled": {
"default": false,
"description": "Enable or disable the PodDisruptionBudget resource.\n\nThis prevents downtime during voluntary disruptions such as during a Node upgrade. For example, the PodDisruptionBudget will block `kubectl drain` if it is used on the Node where the only remaining cert-manager\nPod is currently running.",
"type": "boolean"
},
"helm-values.cainjector.podDisruptionBudget.maxUnavailable": {
"description": "`maxUnavailable` configures the maximum unavailable pods for disruptions. It can either be set to\nan integer (e.g. 1) or a percentage value (e.g. 25%).\nCannot be used if `minAvailable` is set."
},
"helm-values.cainjector.podDisruptionBudget.minAvailable": {
"description": "`minAvailable` configures the minimum available pods for disruptions. It can either be set to\nan integer (e.g. 1) or a percentage value (e.g. 25%).\nCannot be used if `maxUnavailable` is set."
},
"helm-values.cainjector.podLabels": {
"default": {},
"description": "Optional additional labels to add to the CA Injector Pods.",
"type": "object"
},
"helm-values.cainjector.replicaCount": {
"default": 1,
"description": "The number of replicas of the cert-manager cainjector to run.\n\nThe default is 1, but in production set this to 2 or 3 to provide high availability.\n\nIf `replicas > 1`, consider setting `cainjector.podDisruptionBudget.enabled=true`.\n\nNote that cert-manager uses leader election to ensure that there can only be a single instance active at a time.",
"type": "number"
},
"helm-values.cainjector.resources": {
"default": {},
"description": "Resources to provide to the cert-manager cainjector pod.\n\nFor example:\nrequests:\n cpu: 10m\n memory: 32Mi\nFor more information, see [Resource Management for Pods and Containers](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/).",
"type": "object"
},
"helm-values.cainjector.securityContext": {
"default": {
"runAsNonRoot": true,
"seccompProfile": {
"type": "RuntimeDefault"
}
},
"description": "Pod Security Context to be set on the cainjector component Pod. For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).",
"type": "object"
},
"helm-values.cainjector.serviceAccount": {
"additionalProperties": false,
"properties": {
"annotations": {
"$ref": "#/$defs/helm-values.cainjector.serviceAccount.annotations"
},
"automountServiceAccountToken": {
"$ref": "#/$defs/helm-values.cainjector.serviceAccount.automountServiceAccountToken"
},
"create": {
"$ref": "#/$defs/helm-values.cainjector.serviceAccount.create"
},
"labels": {
"$ref": "#/$defs/helm-values.cainjector.serviceAccount.labels"
},
"name": {
"$ref": "#/$defs/helm-values.cainjector.serviceAccount.name"
}
},
"type": "object"
},
"helm-values.cainjector.serviceAccount.annotations": {
"description": "Optional additional annotations to add to the cainjector's Service Account.",
"type": "object"
},
"helm-values.cainjector.serviceAccount.automountServiceAccountToken": {
"default": true,
"description": "Automount API credentials for a Service Account.",
"type": "boolean"
},
"helm-values.cainjector.serviceAccount.create": {
"default": true,
"description": "Specifies whether a service account should be created.",
"type": "boolean"
},
"helm-values.cainjector.serviceAccount.labels": {
"description": "Optional additional labels to add to the cainjector's Service Account.",
"type": "object"
},
"helm-values.cainjector.serviceAccount.name": {
"description": "The name of the service account to use.\nIf not set and create is true, a name is generated using the fullname template",
"type": "string"
},
"helm-values.cainjector.serviceAnnotations": {
"description": "Optional additional annotations to add to the cainjector metrics Service.",
"type": "object"
},
"helm-values.cainjector.serviceLabels": {
"default": {},
"description": "Optional additional labels to add to the CA Injector metrics Service.",
"type": "object"
},
"helm-values.cainjector.strategy": {
"default": {},
"description": "Deployment update strategy for the cert-manager cainjector deployment. For more information, see the [Kubernetes documentation](https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#strategy).\n\nFor example:\nstrategy:\n type: RollingUpdate\n rollingUpdate:\n maxSurge: 0\n maxUnavailable: 1",
"type": "object"
},
"helm-values.cainjector.tolerations": {
"default": [],
"description": "A list of Kubernetes Tolerations, if required. For more information, see [Toleration v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#toleration-v1-core).\n\nFor example:\ntolerations:\n- key: foo.bar.com/role\n operator: Equal\n value: master\n effect: NoSchedule",
"items": {},
"type": "array"
},
"helm-values.cainjector.topologySpreadConstraints": {
"default": [],
"description": "A list of Kubernetes TopologySpreadConstraints, if required. For more information, see [Topology spread constraint v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#topologyspreadconstraint-v1-core).\n\nFor example:\ntopologySpreadConstraints:\n- maxSkew: 2\n topologyKey: topology.kubernetes.io/zone\n whenUnsatisfiable: ScheduleAnyway\n labelSelector:\n matchLabels:\n app.kubernetes.io/instance: cert-manager\n app.kubernetes.io/component: controller",
"items": {},
"type": "array"
},
"helm-values.cainjector.volumeMounts": {
"default": [],
"description": "Additional volume mounts to add to the cert-manager controller container.",
"items": {},
"type": "array"
},
"helm-values.cainjector.volumes": {
"default": [],
"description": "Additional volumes to add to the cert-manager controller pod.",
"items": {},
"type": "array"
},
"helm-values.clusterResourceNamespace": {
"default": "",
"description": "Override the namespace used to store DNS provider credentials etc. for ClusterIssuer resources. By default, the same namespace as cert-manager is deployed within is used. This namespace will not be automatically created by the Helm chart.",
"type": "string"
},
"helm-values.config": {
"default": {},
"description": "This property is used to configure options for the controller pod. This allows setting options that would usually be provided using flags.\n\nIf `apiVersion` and `kind` are unspecified they default to the current latest version (currently `controller.config.cert-manager.io/v1alpha1`). You can pin the version by specifying the `apiVersion` yourself.\n\nFor example:\nconfig:\n apiVersion: controller.config.cert-manager.io/v1alpha1\n kind: ControllerConfiguration\n logging:\n verbosity: 2\n format: text\n leaderElectionConfig:\n namespace: kube-system\n kubernetesAPIQPS: 9000\n kubernetesAPIBurst: 9000\n numberOfConcurrentWorkers: 200\n enableGatewayAPI: true\n # Feature gates as of v1.17.0. Listed with their default values.\n # See https://cert-manager.io/docs/cli/controller/\n featureGates:\n AdditionalCertificateOutputFormats: true # BETA - default=true\n AllAlpha: false # ALPHA - default=false\n AllBeta: false # BETA - default=false\n ExperimentalCertificateSigningRequestControllers: false # ALPHA - default=false\n ExperimentalGatewayAPISupport: true # BETA - default=true\n LiteralCertificateSubject: true # BETA - default=true\n NameConstraints: true # BETA - default=true\n OtherNames: false # ALPHA - default=false\n SecretsFilteredCaching: true # BETA - default=true\n ServerSideApply: false # ALPHA - default=false\n StableCertificateRequestName: true # BETA - default=true\n UseCertificateRequestBasicConstraints: false # ALPHA - default=false\n UseDomainQualifiedFinalizer: true # BETA - default=false\n ValidateCAA: false # ALPHA - default=false\n # Configure the metrics server for TLS\n # See https://cert-manager.io/docs/devops-tips/prometheus-metrics/#tls\n metricsTLSConfig:\n dynamic:\n secretNamespace: \"cert-manager\"\n secretName: \"cert-manager-metrics-ca\"\n dnsNames:\n - cert-manager-metrics",
"type": "object"
},
"helm-values.containerSecurityContext": {
"default": {
"allowPrivilegeEscalation": false,
"capabilities": {
"drop": [
"ALL"
]
},
"readOnlyRootFilesystem": true
},
"description": "Container Security Context to be set on the controller component container. For more information, see [Configure a Security Context for a Pod or Container](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/).",
"type": "object"
},
"helm-values.crds": {
"additionalProperties": false,
"properties": {
"enabled": {
"$ref": "#/$defs/helm-values.crds.enabled"
},
"keep": {
"$ref": "#/$defs/helm-values.crds.keep"
}
},
"type": "object"
},
"helm-values.crds.enabled": {
"default": false,
"description": "This option decides if the CRDs should be installed as part of the Helm installation.",
"type": "boolean"
},
"helm-values.crds.keep": {
"default": true,
"description": "This option makes it so that the \"helm.sh/resource-policy\": keep annotation is added to the CRD. This will prevent Helm from uninstalling the CRD when the Helm release is uninstalled. WARNING: when the CRDs are removed, all cert-manager custom resources\n(Certificates, Issuers, ...) will be removed too by the garbage collector.",
"type": "boolean"
},
"helm-values.creator": {
"default": "helm",
"description": "Field used by our release pipeline to produce the static manifests. The field defaults to \"helm\" but is set to \"static\" when we render the static YAML manifests.",
"type": "string"
},
"helm-values.deploymentAnnotations": {
"description": "Optional additional annotations to add to the controller Deployment.",
"type": "object"
},
"helm-values.disableAutoApproval": {
"default": false,
"description": "Option to disable cert-manager's build-in auto-approver. The auto-approver approves all CertificateRequests that reference issuers matching the 'approveSignerNames' option. This 'disableAutoApproval' option is useful when you want to make all approval decisions using a different approver (like approver-policy - https://github.com/cert-manager/approver-policy).",
"type": "boolean"
},
"helm-values.dns01RecursiveNameservers": {
"default": "",
"description": "A comma-separated string with the host and port of the recursive nameservers cert-manager should query.",
"type": "string"
},
"helm-values.dns01RecursiveNameserversOnly": {
"default": false,
"description": "Forces cert-manager to use only the recursive nameservers for verification. Enabling this option could cause the DNS01 self check to take longer owing to caching performed by the recursive nameservers.",
"type": "boolean"
},
"helm-values.enableCertificateOwnerRef": {
"default": false,
"description": "When this flag is enabled, secrets will be automatically removed when the certificate resource is deleted.",
"type": "boolean"
},
"helm-values.enableServiceLinks": {
"default": false,
"description": "enableServiceLinks indicates whether information about services should be injected into the pod's environment variables, matching the syntax of Docker links.",
"type": "boolean"
},
"helm-values.enabled": {
"default": true,
"description": "Field that can be used as a condition when cert-manager is a dependency. This definition is only here as a placeholder such that it is included in the json schema. See https://helm.sh/docs/chart_best_practices/dependencies/#conditions-and-tags for more info.",
"type": "boolean"
},
"helm-values.extraArgs": {
"default": [],
"description": "Additional command line flags to pass to cert-manager controller binary. To see all available flags run `docker run quay.io/jetstack/cert-manager-controller:<version> --help`.\n\nUse this flag to enable or disable arbitrary controllers. For example, to disable the CertificateRequests approver.\n\nFor example:\nextraArgs:\n - --controllers=*,-certificaterequests-approver",
"items": {},
"type": "array"
},
"helm-values.extraEnv": {
"default": [],
"description": "Additional environment variables to pass to cert-manager controller binary.\nFor example:\nextraEnv:\n- name: SOME_VAR\n value: 'some value'",
"items": {},
"type": "array"
},
"helm-values.extraObjects": {
"default": [],
"description": "Create dynamic manifests via values.\n\nFor example:\nextraObjects:\n - |\n apiVersion: v1\n kind: ConfigMap\n metadata:\n name: '{{ template \"cert-manager.fullname\" . }}-extra-configmap'",
"items": {},
"type": "array"
},
"helm-values.featureGates": {
"default": "",
"description": "A comma-separated list of feature gates that should be enabled on the controller pod.",
"type": "string"
},
"helm-values.fullnameOverride": {
"description": "Override the \"cert-manager.fullname\" value. This value is used as part of most of the names of the resources created by this Helm chart.",
"type": "string"
},
"helm-values.global": {
"description": "Global values shared across all (sub)charts",
"properties": {
"commonLabels": {
"$ref": "#/$defs/helm-values.global.commonLabels"
},
"imagePullSecrets": {
"$ref": "#/$defs/helm-values.global.imagePullSecrets"
},
"leaderElection": {
"$ref": "#/$defs/helm-values.global.leaderElection"
},
"logLevel": {
"$ref": "#/$defs/helm-values.global.logLevel"
},
"podSecurityPolicy": {
"$ref": "#/$defs/helm-values.global.podSecurityPolicy"
},
"priorityClassName": {
"$ref": "#/$defs/helm-values.global.priorityClassName"
},
"rbac": {
"$ref": "#/$defs/helm-values.global.rbac"
},
"revisionHistoryLimit": {
"$ref": "#/$defs/helm-values.global.revisionHistoryLimit"
}
},
"type": "object"
},
"helm-values.global.commonLabels": {
"default": {},
"description": "Labels to apply to all resources.\nPlease note that this does not add labels to the resources created dynamically by the controllers. For these resources, you have to add the labels in the template in the cert-manager custom resource: For example, podTemplate/ ingressTemplate in ACMEChallengeSolverHTTP01Ingress. For more information, see the [cert-manager documentation](https://cert-manager.io/docs/reference/api-docs/#acme.cert-manager.io/v1.ACMEChallengeSolverHTTP01Ingress).\nFor example, secretTemplate in CertificateSpec\nFor more information, see the [cert-manager documentation](https://cert-manager.io/docs/reference/api-docs/#cert-manager.io/v1.CertificateSpec).",
"type": "object"
},
"helm-values.global.imagePullSecrets": {
"default": [],
"description": "Reference to one or more secrets to be used when pulling images. For more information, see [Pull an Image from a Private Registry](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/).\n\nFor example:\nimagePullSecrets:\n - name: \"image-pull-secret\"",
"items": {},
"type": "array"
},
"helm-values.global.leaderElection": {
"properties": {
"leaseDuration": {
"$ref": "#/$defs/helm-values.global.leaderElection.leaseDuration"
},
"namespace": {
"$ref": "#/$defs/helm-values.global.leaderElection.namespace"
},
"renewDeadline": {
"$ref": "#/$defs/helm-values.global.leaderElection.renewDeadline"
},
"retryPeriod": {
"$ref": "#/$defs/helm-values.global.leaderElection.retryPeriod"
}
},
"type": "object"
},
"helm-values.global.leaderElection.leaseDuration": {
"description": "The duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate.",
"type": "string"
},
"helm-values.global.leaderElection.namespace": {
"default": "kube-system",
"description": "Override the namespace used for the leader election lease.",
"type": "string"
},
"helm-values.global.leaderElection.renewDeadline": {
"description": "The interval between attempts by the acting master to renew a leadership slot before it stops leading. This must be less than or equal to the lease duration.",
"type": "string"
},
"helm-values.global.leaderElection.retryPeriod": {
"description": "The duration the clients should wait between attempting acquisition and renewal of a leadership.",
"type": "string"
},
"helm-values.global.logLevel": {
"default": 2,
"description": "Set the verbosity of cert-manager. A range of 0 - 6, with 6 being the most verbose.",
"type": "number"
},
"helm-values.global.podSecurityPolicy": {
"properties": {
"enabled": {
"$ref": "#/$defs/helm-values.global.podSecurityPolicy.enabled"
},
"useAppArmor": {
"$ref": "#/$defs/helm-values.global.podSecurityPolicy.useAppArmor"
}
},
"type": "object"
},
"helm-values.global.podSecurityPolicy.enabled": {
"default": false,
"description": "Create PodSecurityPolicy for cert-manager.\n\nNote that PodSecurityPolicy was deprecated in Kubernetes 1.21 and removed in Kubernetes 1.25.",
"type": "boolean"
},
"helm-values.global.podSecurityPolicy.useAppArmor": {
"default": true,
"description": "Configure the PodSecurityPolicy to use AppArmor.",
"type": "boolean"
},
"helm-values.global.priorityClassName": {
"default": "",
"description": "The optional priority class to be used for the cert-manager pods.",
"type": "string"
},
"helm-values.global.rbac": {
"properties": {
"aggregateClusterRoles": {
"$ref": "#/$defs/helm-values.global.rbac.aggregateClusterRoles"
},
"create": {
"$ref": "#/$defs/helm-values.global.rbac.create"
}
},
"type": "object"
},
"helm-values.global.rbac.aggregateClusterRoles": {
"default": true,
"description": "Aggregate ClusterRoles to Kubernetes default user-facing roles. For more information, see [User-facing roles](https://kubernetes.io/docs/reference/access-authn-authz/rbac/#user-facing-roles)",
"type": "boolean"
},
"helm-values.global.rbac.create": {
"default": true,
"description": "Create required ClusterRoles and ClusterRoleBindings for cert-manager.",
"type": "boolean"
},
"helm-values.global.revisionHistoryLimit": {
"description": "The number of old ReplicaSets to retain to allow rollback (if not set, the default Kubernetes value is set to 10).",
"type": "number"
},
"helm-values.hostAliases": {
"default": [],
"description": "Optional hostAliases for cert-manager-controller pods. May be useful when performing ACME DNS-01 self checks.",
"items": {},
"type": "array"
},
"helm-values.http_proxy": {
"description": "Configures the HTTP_PROXY environment variable where a HTTP proxy is required.",
"type": "string"
},
"helm-values.https_proxy": {
"description": "Configures the HTTPS_PROXY environment variable where a HTTP proxy is required.",
"type": "string"
},
"helm-values.image": {
"additionalProperties": false,
"properties": {
"digest": {
"$ref": "#/$defs/helm-values.image.digest"
},
"pullPolicy": {
"$ref": "#/$defs/helm-values.image.pullPolicy"
},
"registry": {
"$ref": "#/$defs/helm-values.image.registry"
},
"repository": {
"$ref": "#/$defs/helm-values.image.repository"
},
"tag": {
"$ref": "#/$defs/helm-values.image.tag"
}
},
"type": "object"
},
"helm-values.image.digest": {
"description": "Setting a digest will override any tag.",
"type": "string"
},
"helm-values.image.pullPolicy": {
"default": "IfNotPresent",
"description": "Kubernetes imagePullPolicy on Deployment.",
"type": "string"
},
"helm-values.image.registry": {
"description": "The container registry to pull the manager image from.",
"type": "string"
},
"helm-values.image.repository": {
"default": "quay.io/jetstack/cert-manager-controller",
"description": "The container image for the cert-manager controller.",
"type": "string"
},
"helm-values.image.tag": {
"description": "Override the image tag to deploy by setting this variable. If no value is set, the chart's appVersion is used.",
"type": "string"
},
"helm-values.ingressShim": {
"additionalProperties": false,
"properties": {
"defaultIssuerGroup": {
"$ref": "#/$defs/helm-values.ingressShim.defaultIssuerGroup"
},
"defaultIssuerKind": {
"$ref": "#/$defs/helm-values.ingressShim.defaultIssuerKind"
},
"defaultIssuerName": {
"$ref": "#/$defs/helm-values.ingressShim.defaultIssuerName"
}
},
"type": "object"
},
"helm-values.ingressShim.defaultIssuerGroup": {
"description": "Optional default issuer group to use for ingress resources.",
"type": "string"
},
"helm-values.ingressShim.defaultIssuerKind": {
"description": "Optional default issuer kind to use for ingress resources.",
"type": "string"
},
"helm-values.ingressShim.defaultIssuerName": {
"description": "Optional default issuer to use for ingress resources.",
"type": "string"
},
"helm-values.installCRDs": {
"default": false,
"description": "This option is equivalent to setting crds.enabled=true and crds.keep=true. Deprecated: use crds.enabled and crds.keep instead.",
"type": "boolean"
},
"helm-values.livenessProbe": {
"default": {
"enabled": true,
"failureThreshold": 8,
"initialDelaySeconds": 10,
"periodSeconds": 10,
"successThreshold": 1,
"timeoutSeconds": 15
},
"description": "LivenessProbe settings for the controller container of the controller Pod.\n\nThis is enabled by default, in order to enable the clock-skew liveness probe that restarts the controller in case of a skew between the system clock and the monotonic clock. LivenessProbe durations and thresholds are based on those used for the Kubernetes controller-manager. For more information see the following on the\n[Kubernetes GitHub repository](https://github.com/kubernetes/kubernetes/blob/806b30170c61a38fedd54cc9ede4cd6275a1ad3b/cmd/kubeadm/app/util/staticpod/utils.go#L241-L245)",
"type": "object"
},
"helm-values.maxConcurrentChallenges": {
"default": 60,
"description": "The maximum number of challenges that can be scheduled as 'processing' at once.",
"type": "number"
},
"helm-values.nameOverride": {
"description": "Override the \"cert-manager.name\" value, which is used to annotate some of the resources that are created by this Chart (using \"app.kubernetes.io/name\"). NOTE: There are some inconsistencies in the Helm chart when it comes to these annotations (some resources use eg. \"cainjector.name\" which resolves to the value \"cainjector\").",
"type": "string"
},
"helm-values.namespace": {
"default": "",
"description": "This namespace allows you to define where the services are installed into. If not set then they use the namespace of the release. This is helpful when installing cert manager as a chart dependency (sub chart).",
"type": "string"
},
"helm-values.no_proxy": {
"description": "Configures the NO_PROXY environment variable where a HTTP proxy is required, but certain domains should be excluded.",
"type": "string"
},
"helm-values.nodeSelector": {
"default": {
"kubernetes.io/os": "linux"
},
"description": "The nodeSelector on Pods tells Kubernetes to schedule Pods on the nodes with matching labels. For more information, see [Assigning Pods to Nodes](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).\n\nThis default ensures that Pods are only scheduled to Linux nodes. It prevents Pods being scheduled to Windows nodes in a mixed OS cluster.",
"type": "object"
},
"helm-values.podAnnotations": {
"description": "Optional additional annotations to add to the controller Pods.",
"type": "object"
},
"helm-values.podDisruptionBudget": {
"additionalProperties": false,
"properties": {
"enabled": {
"$ref": "#/$defs/helm-values.podDisruptionBudget.enabled"
},
"maxUnavailable": {
"$ref": "#/$defs/helm-values.podDisruptionBudget.maxUnavailable"
},
"minAvailable": {
"$ref": "#/$defs/helm-values.podDisruptionBudget.minAvailable"
}
},
"type": "object"
},
"helm-values.podDisruptionBudget.enabled": {
"default": false,
"description": "Enable or disable the PodDisruptionBudget resource.\n\nThis prevents downtime during voluntary disruptions such as during a Node upgrade. For example, the PodDisruptionBudget will block `kubectl drain` if it is used on the Node where the only remaining cert-manager\nPod is currently running.",
"type": "boolean"
},
"helm-values.podDisruptionBudget.maxUnavailable": {
"description": "This configures the maximum unavailable pods for disruptions. It can either be set to an integer (e.g. 1) or a percentage value (e.g. 25%). it cannot be used if `minAvailable` is set."
},
"helm-values.podDisruptionBudget.minAvailable": {
"description": "This configures the minimum available pods for disruptions. It can either be set to an integer (e.g. 1) or a percentage value (e.g. 25%).\nIt cannot be used if `maxUnavailable` is set."
},
"helm-values.podDnsConfig": {
"description": "Pod DNS configuration. The podDnsConfig field is optional and can work with any podDnsPolicy settings. However, when a Pod's dnsPolicy is set to \"None\", the dnsConfig field has to be specified. For more information, see [Pod's DNS Config](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-dns-config).",
"type": "object"
},
"helm-values.podDnsPolicy": {
"description": "Pod DNS policy.\nFor more information, see [Pod's DNS Policy](https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy).",
"type": "string"
},
"helm-values.podLabels": {
"default": {},
"description": "Optional additional labels to add to the controller Pods.",
"type": "object"
},
"helm-values.prometheus": {
"additionalProperties": false,
"properties": {
"enabled": {
"$ref": "#/$defs/helm-values.prometheus.enabled"
},
"podmonitor": {
"$ref": "#/$defs/helm-values.prometheus.podmonitor"
},
"servicemonitor": {
"$ref": "#/$defs/helm-values.prometheus.servicemonitor"
}
},
"type": "object"
},