diff --git a/helm-charts/aerospike-cluster/templates/aerospike-cluster-cr.yaml b/helm-charts/aerospike-cluster/templates/aerospike-cluster-cr.yaml index 5ba0dc431..765f9b222 100644 --- a/helm-charts/aerospike-cluster/templates/aerospike-cluster-cr.yaml +++ b/helm-charts/aerospike-cluster/templates/aerospike-cluster-cr.yaml @@ -13,11 +13,15 @@ metadata: spec: # Aerospike cluster size - size: {{ .Values.replicas | default 3 }} + size: {{ .Values.replicas }} # Aerospike server docker image image: {{ .Values.image.repository | default "aerospike/aerospike-server-enterprise" }}:{{ .Values.image.tag | default "7.1.0.0" }} + maxUnavailable: {{ .Values.maxUnavailable }} + + disablePDB: {{ .Values.disablePDB }} + # Aerospike access control configuration {{- with .Values.aerospikeAccessControl }} aerospikeAccessControl: {{- toYaml . | nindent 4 }} @@ -50,6 +54,8 @@ spec: {{- end }} + enableDynamicConfigUpdate: {{ .Values.enableDynamicConfigUpdate }} + # Aerospike network policy {{- with .Values.aerospikeNetworkPolicy }} aerospikeNetworkPolicy: {{- toYaml . | nindent 4 }} @@ -106,3 +112,11 @@ spec: {{- with .Values.seedsFinderServices }} seedsFinderServices: {{- toYaml . | nindent 4 }} {{- end }} + + {{- if .Values.rosterNodeBlockList }} + rosterNodeBlockList: {{ .Values.rosterNodeBlockList }} + {{- end }} + + {{- if .Values.k8sNodeBlockList }} + k8sNodeBlockList: {{ .Values.k8sNodeBlockList }} + {{- end }} \ No newline at end of file diff --git a/helm-charts/aerospike-cluster/values.yaml b/helm-charts/aerospike-cluster/values.yaml index cb9774064..b0bdab6cf 100644 --- a/helm-charts/aerospike-cluster/values.yaml +++ b/helm-charts/aerospike-cluster/values.yaml @@ -11,7 +11,7 @@ image: tag: 7.1.0.0 ## In case the above image is pulled from a registry that requires -## authentication, a secret containining credentials can be added +## authentication, a secret containing credentials can be added ## imagePullSecrets: ## - secret_with_credentials_to_custom_registry imagePullSecrets: {} diff --git a/helm-charts/aerospike-kubernetes-operator/values.yaml b/helm-charts/aerospike-kubernetes-operator/values.yaml index 3befb4221..faea89650 100644 --- a/helm-charts/aerospike-kubernetes-operator/values.yaml +++ b/helm-charts/aerospike-kubernetes-operator/values.yaml @@ -8,7 +8,7 @@ operatorImage: pullPolicy: IfNotPresent ## In case the above image is pulled from a registry that requires -## authentication, a secret containining credentials can be added +## authentication, a secret containing credentials can be added ## imagePullSecrets: ## - secret_with_credentials_to_custom_registry imagePullSecrets: {}