Alexandre Viau
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with
28 additions and
0 deletions
-
k8s/charts/seaweedfs/templates/filer-statefulset.yaml
-
k8s/charts/seaweedfs/templates/master-statefulset.yaml
-
k8s/charts/seaweedfs/templates/s3-deployment.yaml
-
k8s/charts/seaweedfs/templates/volume-statefulset.yaml
-
k8s/charts/seaweedfs/values.yaml
|
|
@ -52,6 +52,9 @@ spec: |
|
|
|
priorityClassName: {{ .Values.filer.priorityClassName | quote }} |
|
|
|
{{- end }} |
|
|
|
enableServiceLinks: false |
|
|
|
{{- if .Values.filer.serviceAccountName }} |
|
|
|
serviceAccountName: {{ .Values.filer.serviceAccountName | quote }} |
|
|
|
{{- end }} |
|
|
|
{{- if .Values.filer.initContainers }} |
|
|
|
initContainers: |
|
|
|
{{ tpl .Values.filer.initContainers . | nindent 8 | trim }} |
|
|
|
|
|
@ -48,6 +48,9 @@ spec: |
|
|
|
priorityClassName: {{ .Values.master.priorityClassName | quote }} |
|
|
|
{{- end }} |
|
|
|
enableServiceLinks: false |
|
|
|
{{- if .Values.master.serviceAccountName }} |
|
|
|
serviceAccountName: {{ .Values.master.serviceAccountName | quote }} |
|
|
|
{{- end }} |
|
|
|
{{- if .Values.master.initContainers }} |
|
|
|
initContainers: |
|
|
|
{{ tpl .Values.master.initContainers . | nindent 8 | trim }} |
|
|
|
|
|
@ -36,6 +36,9 @@ spec: |
|
|
|
priorityClassName: {{ .Values.s3.priorityClassName | quote }} |
|
|
|
{{- end }} |
|
|
|
enableServiceLinks: false |
|
|
|
{{- if .Values.s3.serviceAccountName }} |
|
|
|
serviceAccountName: {{ .Values.s3.serviceAccountName | quote }} |
|
|
|
{{- end }} |
|
|
|
{{- if .Values.s3.initContainers }} |
|
|
|
initContainers: |
|
|
|
{{ tpl .Values.s3.initContainers . | nindent 8 | trim }} |
|
|
|
|
|
@ -42,6 +42,9 @@ spec: |
|
|
|
priorityClassName: {{ .Values.volume.priorityClassName | quote }} |
|
|
|
{{- end }} |
|
|
|
enableServiceLinks: false |
|
|
|
{{- if .Values.volume.serviceAccountName }} |
|
|
|
serviceAccountName: {{ .Values.volume.serviceAccountName | quote }} |
|
|
|
{{- end }} |
|
|
|
{{- $initContainers_exists := include "volume.initContainers_exists" . -}} |
|
|
|
{{- if $initContainers_exists }} |
|
|
|
initContainers: |
|
|
|
|
|
@ -124,6 +124,10 @@ master: |
|
|
|
# ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
|
|
|
priorityClassName: "" |
|
|
|
|
|
|
|
# used to assign a service account. |
|
|
|
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
|
|
|
serviceAccountName: "" |
|
|
|
|
|
|
|
ingress: |
|
|
|
enabled: false |
|
|
|
className: "nginx" |
|
|
@ -265,6 +269,10 @@ volume: |
|
|
|
# ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
|
|
|
priorityClassName: "" |
|
|
|
|
|
|
|
# used to assign a service account. |
|
|
|
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
|
|
|
serviceAccountName: "" |
|
|
|
|
|
|
|
filer: |
|
|
|
enabled: true |
|
|
|
repository: null |
|
|
@ -372,6 +380,10 @@ filer: |
|
|
|
# ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
|
|
|
priorityClassName: "" |
|
|
|
|
|
|
|
# used to assign a service account. |
|
|
|
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
|
|
|
serviceAccountName: "" |
|
|
|
|
|
|
|
ingress: |
|
|
|
enabled: false |
|
|
|
className: "nginx" |
|
|
@ -492,6 +504,10 @@ s3: |
|
|
|
# ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/ |
|
|
|
priorityClassName: "" |
|
|
|
|
|
|
|
# used to assign a service account. |
|
|
|
# ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ |
|
|
|
serviceAccountName: "" |
|
|
|
|
|
|
|
logs: |
|
|
|
type: "hostPath" |
|
|
|
size: "" |
|
|
|