1- # # @section Docker image configuration
2- # #
3-
4- # # YDB operator image
1+ # # Docker image configuration
52# #
63image :
7- # # @param image.pullPolicy Operator container pull policy
4+ # # Operator container pull policy
85 # # ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
96 # #
107 pullPolicy : IfNotPresent
11- # # @param image.repository Operator image repository
128 repository : cr.yandex/yc/ydb-kubernetes-operator
13- # # @param image.tag Operator image tag
14- tag : 0.2.0
9+ tag : 0.4.3
1510
16- # # @param imagePullSecrets Secrets to use for Docker registry access
11+ # # Secrets to use for Docker registry access
1712# # Secrets must be provided manually.
1813# # ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
1914# # Example:
@@ -22,22 +17,20 @@ image:
2217# #
2318imagePullSecrets : []
2419
25- # # @skip nameOverride
2620nameOverride : " "
27- # # @skip fullnameOverride
2821fullnameOverride : " "
2922
30- # # @section Resource quotas
23+ # # Resource quotas
3124# # ref: http://kubernetes.io/docs/user-guide/compute-resources/
3225resources :
33- # # @param resources.limits The resource limits for Operator container
34- # # Например :
26+ # # The resource limits for Operator container
27+ # # Example :
3528 # # limits:
3629 # # cpu: 250m
3730 # # memory: 512Mi
3831 limits : {}
39- # # @param resources.requests The requested resources for Operator container
40- # # Например :
32+ # # The requested resources for Operator container
33+ # # Example :
4134 # # requests:
4235 # # cpu: 250m
4336 # # memory: 256Mi
@@ -48,6 +41,8 @@ service:
4841 type : ClusterIP
4942
5043metrics :
44+ # # Create ServiceMonitor resources
45+ # #
5146 enabled : true
5247
5348webhook :
@@ -57,6 +52,10 @@ webhook:
5752 type : ClusterIP
5853 port : 9443
5954
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+ # #
6059 patch :
6160 enabled : true
6261 image :
@@ -74,15 +73,15 @@ webhook:
7473 tolerations : []
7574
7675 # # 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
7877 # # ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
7978 # #
8079 securityContext :
8180 runAsGroup : 2000
8281 runAsNonRoot : true
8382 runAsUser : 2000
8483
85- # Use certmanager to generate webhook certs
84+ # Use cert-manager to generate webhook certs
8685 certManager :
8786 enabled : false
8887 # self-signed root certificate
0 commit comments