1
- # # @section Docker image configuration
2
- # #
3
-
4
- # # YDB operator image
1
+ # # Docker image configuration
5
2
# #
6
3
image :
7
- # # @param image.pullPolicy Operator container pull policy
4
+ # # Operator container pull policy
8
5
# # ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
9
6
# #
10
7
pullPolicy : IfNotPresent
11
- # # @param image.repository Operator image repository
12
8
repository : cr.yandex/yc/ydb-kubernetes-operator
13
- # # @param image.tag Operator image tag
14
- tag : 0.2.0
9
+ tag : 0.4.3
15
10
16
- # # @param imagePullSecrets Secrets to use for Docker registry access
11
+ # # Secrets to use for Docker registry access
17
12
# # Secrets must be provided manually.
18
13
# # ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
19
14
# # Example:
@@ -22,22 +17,20 @@ image:
22
17
# #
23
18
imagePullSecrets : []
24
19
25
- # # @skip nameOverride
26
20
nameOverride : " "
27
- # # @skip fullnameOverride
28
21
fullnameOverride : " "
29
22
30
- # # @section Resource quotas
23
+ # # Resource quotas
31
24
# # ref: http://kubernetes.io/docs/user-guide/compute-resources/
32
25
resources :
33
- # # @param resources.limits The resource limits for Operator container
34
- # # Например :
26
+ # # The resource limits for Operator container
27
+ # # Example :
35
28
# # limits:
36
29
# # cpu: 250m
37
30
# # memory: 512Mi
38
31
limits : {}
39
- # # @param resources.requests The requested resources for Operator container
40
- # # Например :
32
+ # # The requested resources for Operator container
33
+ # # Example :
41
34
# # requests:
42
35
# # cpu: 250m
43
36
# # memory: 256Mi
@@ -48,6 +41,8 @@ service:
48
41
type : ClusterIP
49
42
50
43
metrics :
44
+ # # Create ServiceMonitor resources
45
+ # #
51
46
enabled : true
52
47
53
48
webhook :
@@ -57,6 +52,10 @@ webhook:
57
52
type : ClusterIP
58
53
port : 9443
59
54
55
+ # # If enabled, generate a self-signed certificate, then patch the webhook configurations with the generated data.
56
+ # # On chart upgrades (or if the secret exists) the cert will not be re-generated. You can use this to provide your own
57
+ # # certs ahead of time if you wish.
58
+ # #
60
59
patch :
61
60
enabled : true
62
61
image :
@@ -74,15 +73,15 @@ webhook:
74
73
tolerations : []
75
74
76
75
# # SecurityContext holds pod-level security attributes and common container settings.
77
- # # This defaults to non root user with uid 2000 and gid 2000. *v1.PodSecurityContext false
76
+ # # This defaults to non- root user with uid 2000 and gid 2000. *v1.PodSecurityContext false
78
77
# # ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
79
78
# #
80
79
securityContext :
81
80
runAsGroup : 2000
82
81
runAsNonRoot : true
83
82
runAsUser : 2000
84
83
85
- # Use certmanager to generate webhook certs
84
+ # Use cert-manager to generate webhook certs
86
85
certManager :
87
86
enabled : false
88
87
# self-signed root certificate
0 commit comments