mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-05 20:52:50 +08:00
Fix typos and YAML syntax issues (#6628)
* chore: remove trailing colon Fixes a typo that might confuse users who simply uncomment or copy the example, leading them to encounter invalid YAML. * fix: using seaweedfs-s3-secret as default secret for COSI deployment The default secret name containing the seaweedfs_s3_config secret key is called "seaweedfs-s3-secret" throughout the configuration. This fix ensures the COSI driver deployment uses the same consistent name. * chore!: fix typo BREAKING CHANGE: Changes name of key in helm-values.
This commit is contained in:
parent
c45b8bd6ac
commit
7766e9729f
@ -173,7 +173,7 @@ spec:
|
|||||||
{{- if .Values.cosi.existingConfigSecret }}
|
{{- if .Values.cosi.existingConfigSecret }}
|
||||||
secretName: {{ .Values.cosi.existingConfigSecret }}
|
secretName: {{ .Values.cosi.existingConfigSecret }}
|
||||||
{{- else }}
|
{{- else }}
|
||||||
secretName: seaweedfs-client-cert
|
secretName: seaweedfs-s3-secret
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.global.enableSecurity }}
|
{{- if .Values.global.enableSecurity }}
|
||||||
|
@ -173,7 +173,7 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
-dirListLimit={{ .Values.filer.dirListLimit }} \
|
-dirListLimit={{ .Values.filer.dirListLimit }} \
|
||||||
{{- if .Values.global.enableReplication }}
|
{{- if .Values.global.enableReplication }}
|
||||||
-defaultReplicaPlacement={{ .Values.global.replicationPlacment }} \
|
-defaultReplicaPlacement={{ .Values.global.replicationPlacement }} \
|
||||||
{{- else }}
|
{{- else }}
|
||||||
-defaultReplicaPlacement={{ .Values.filer.defaultReplicaPlacement }} \
|
-defaultReplicaPlacement={{ .Values.filer.defaultReplicaPlacement }} \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -139,7 +139,7 @@ spec:
|
|||||||
-mdir=/data \
|
-mdir=/data \
|
||||||
-ip.bind={{ .Values.master.ipBind }} \
|
-ip.bind={{ .Values.master.ipBind }} \
|
||||||
{{- if .Values.global.enableReplication }}
|
{{- if .Values.global.enableReplication }}
|
||||||
-defaultReplication={{ .Values.global.replicationPlacment }} \
|
-defaultReplication={{ .Values.global.replicationPlacement }} \
|
||||||
{{- else }}
|
{{- else }}
|
||||||
-defaultReplication={{ .Values.master.defaultReplication }} \
|
-defaultReplication={{ .Values.master.defaultReplication }} \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -27,13 +27,13 @@ global:
|
|||||||
gatewayHost: null
|
gatewayHost: null
|
||||||
gatewayPort: null
|
gatewayPort: null
|
||||||
additionalLabels: {}
|
additionalLabels: {}
|
||||||
# if enabled will use global.replicationPlacment and override master & filer defaultReplicaPlacement config
|
# if enabled will use global.replicationPlacement and override master & filer defaultReplicaPlacement config
|
||||||
enableReplication: false
|
enableReplication: false
|
||||||
# replication type is XYZ:
|
# replication type is XYZ:
|
||||||
# X number of replica in other data centers
|
# X number of replica in other data centers
|
||||||
# Y number of replica in other racks in the same data center
|
# Y number of replica in other racks in the same data center
|
||||||
# Z number of replica in other servers in the same rack
|
# Z number of replica in other servers in the same rack
|
||||||
replicationPlacment: "001"
|
replicationPlacement: "001"
|
||||||
extraEnvironmentVars:
|
extraEnvironmentVars:
|
||||||
WEED_CLUSTER_DEFAULT: "sw"
|
WEED_CLUSTER_DEFAULT: "sw"
|
||||||
WEED_CLUSTER_SW_MASTER: "seaweedfs-master.seaweedfs:9333"
|
WEED_CLUSTER_SW_MASTER: "seaweedfs-master.seaweedfs:9333"
|
||||||
@ -291,7 +291,7 @@ volume:
|
|||||||
# For each data disk you may use ANY storage-class, example with local-path-provisioner
|
# For each data disk you may use ANY storage-class, example with local-path-provisioner
|
||||||
# Annotations are optional.
|
# Annotations are optional.
|
||||||
# dataDirs:
|
# dataDirs:
|
||||||
# - name: data:
|
# - name: data
|
||||||
# type: "persistentVolumeClaim"
|
# type: "persistentVolumeClaim"
|
||||||
# size: "24Ti"
|
# size: "24Ti"
|
||||||
# storageClass: "local-path-provisioner"
|
# storageClass: "local-path-provisioner"
|
||||||
|
Loading…
Reference in New Issue
Block a user