Browse Source
Remove hardcoded podManagmentPolicy value in a helm chart (#4941)
pull/4943/head
fibbanachi
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
12 additions and
3 deletions
-
k8s/charts/seaweedfs/templates/filer-statefulset.yaml
-
k8s/charts/seaweedfs/templates/master-statefulset.yaml
-
k8s/charts/seaweedfs/templates/volume-statefulset.yaml
-
k8s/charts/seaweedfs/values.yaml
|
|
@ -12,7 +12,7 @@ metadata: |
|
|
|
app.kubernetes.io/component: filer |
|
|
|
spec: |
|
|
|
serviceName: {{ template "seaweedfs.name" . }}-filer |
|
|
|
podManagementPolicy: Parallel |
|
|
|
podManagementPolicy: {{ .Values.filer.podManagementPolicy }} |
|
|
|
replicas: {{ .Values.filer.replicas }} |
|
|
|
{{- if (gt (int .Values.filer.updatePartition) 0) }} |
|
|
|
updateStrategy: |
|
|
|
|
|
@ -11,7 +11,7 @@ metadata: |
|
|
|
app.kubernetes.io/instance: {{ .Release.Name }} |
|
|
|
spec: |
|
|
|
serviceName: {{ template "seaweedfs.name" . }}-master |
|
|
|
podManagementPolicy: Parallel |
|
|
|
podManagementPolicy: {{ .Values.master.podManagementPolicy }} |
|
|
|
replicas: {{ .Values.master.replicas }} |
|
|
|
{{- if (gt (int .Values.master.updatePartition) 0) }} |
|
|
|
updateStrategy: |
|
|
|
|
|
@ -12,7 +12,7 @@ metadata: |
|
|
|
spec: |
|
|
|
serviceName: {{ template "seaweedfs.name" . }}-volume |
|
|
|
replicas: {{ .Values.volume.replicas }} |
|
|
|
podManagementPolicy: Parallel |
|
|
|
podManagementPolicy: {{ .Values.volume.podManagementPolicy }} |
|
|
|
selector: |
|
|
|
matchLabels: |
|
|
|
app.kubernetes.io/name: {{ template "seaweedfs.name" . }} |
|
|
|
|
|
@ -94,6 +94,9 @@ master: |
|
|
|
extraVolumes: "" |
|
|
|
extraVolumeMounts: "" |
|
|
|
|
|
|
|
## Set podManagementPolicy |
|
|
|
podManagementPolicy: Parallel |
|
|
|
|
|
|
|
# Resource requests, limits, etc. for the master cluster placement. This |
|
|
|
# should map directly to the value of the resources field for a PodSpec, |
|
|
|
# formatted as a multi-line string. By default no direct resource request |
|
|
@ -269,6 +272,9 @@ volume: |
|
|
|
extraVolumes: "" |
|
|
|
extraVolumeMounts: "" |
|
|
|
|
|
|
|
## Set podManagementPolicy |
|
|
|
podManagementPolicy: Parallel |
|
|
|
|
|
|
|
# Affinity Settings |
|
|
|
# Commenting out or setting as empty the affinity variable, will allow |
|
|
|
# deployment to single node services such as Minikube |
|
|
@ -402,6 +408,9 @@ filer: |
|
|
|
extraVolumes: "" |
|
|
|
extraVolumeMounts: "" |
|
|
|
|
|
|
|
## Set podManagementPolicy |
|
|
|
podManagementPolicy: Parallel |
|
|
|
|
|
|
|
# Affinity Settings |
|
|
|
# Commenting out or setting as empty the affinity variable, will allow |
|
|
|
# deployment to single node services such as Minikube |
|
|
|