diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-03-26 14:20:56 +0100 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-03-26 14:20:56 +0100 |
commit | f11447d127d21dd56b302fe1014f4801d32511c5 (patch) | |
tree | bdc3c9a91af81a7bf132b4324ee378eb71de11b7 /vnfs/DAaaS/deploy/minio/templates | |
parent | bba7ed02826fa1f33189eb1d2d43c74a0d45fe83 (diff) |
Fix spacing issues in YAML files in vnfs
Fixes applied as reported by yamllint.
Change-Id: I8bd30d49e728715fdc696bb984fbca842ac1c2b8
Issue-ID: INT-1482
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'vnfs/DAaaS/deploy/minio/templates')
-rw-r--r-- | vnfs/DAaaS/deploy/minio/templates/deployment.yaml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/vnfs/DAaaS/deploy/minio/templates/deployment.yaml b/vnfs/DAaaS/deploy/minio/templates/deployment.yaml index af335b2d..b21f0c46 100644 --- a/vnfs/DAaaS/deploy/minio/templates/deployment.yaml +++ b/vnfs/DAaaS/deploy/minio/templates/deployment.yaml @@ -57,28 +57,28 @@ spec: "/usr/bin/docker-entrypoint.sh minio -C {{ .Values.configPath }} gateway s3 {{ .Values.s3gateway.serviceEndpoint }}" ] {{- else }} {{- if .Values.azuregateway.enabled }} - command: [ "/bin/sh", - "-ce", + command: [ "/bin/sh", + "-ce", "/usr/bin/docker-entrypoint.sh minio -C {{ .Values.configPath }} gateway azure" ] {{- else }} {{- if .Values.gcsgateway.enabled }} - command: [ "/bin/sh", - "-ce", + command: [ "/bin/sh", + "-ce", "/usr/bin/docker-entrypoint.sh minio -C {{ .Values.configPath }} gateway gcs {{ .Values.gcsgateway.projectId }}" ] {{- else }} {{- if .Values.ossgateway.enabled }} - command: [ "/bin/sh", - "-ce", - "cp /tmp/config.json {{ .Values.configPath }} && + command: [ "/bin/sh", + "-ce", + "cp /tmp/config.json {{ .Values.configPath }} && /usr/bin/docker-entrypoint.sh minio -C {{ .Values.configPath }} gateway oss {{ .Values.ossgateway.endpointURL }}" ] {{- else }} {{- if .Values.nasgateway.enabled }} - command: [ "/bin/sh", - "-ce", + command: [ "/bin/sh", + "-ce", "/usr/bin/docker-entrypoint.sh minio -C {{ .Values.configPath }} gateway nas {{ .Values.mountPath }}" ] {{- else }} - command: [ "/bin/sh", - "-ce", + command: [ "/bin/sh", + "-ce", "/usr/bin/docker-entrypoint.sh minio -C {{ .Values.configPath }} server {{ .Values.mountPath }}" ] {{- end }} {{- end }} |