[stable/spinnaker] Fix for k8s 1.9.4 or upper version (#5238)

* update minio chart version

* change minio endpoint

* change minio client image for using mc mb -p option

* update chart version to 0.4.1
This commit is contained in:
Komazaki
2018-05-08 10:39:52 -07:00
committed by k8s-ci-robot
parent 0011b17cff
commit 098077e971
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: Open source, multi-cloud continuous delivery platform for releasing software changes with high velocity and confidence.
name: spinnaker
version: 0.4.0
version: 0.4.1
appVersion: 1.6.0
home: http://spinnaker.io/
sources:
+3 -3
View File
@@ -4,9 +4,9 @@ dependencies:
version: 1.1.6
- name: minio
repository: https://kubernetes-charts.storage.googleapis.com/
version: 0.4.3
version: 1.1.1
- name: jenkins
repository: https://kubernetes-charts.storage.googleapis.com/
version: 0.13.3
digest: sha256:5cdbf5aa7fa2f1fab477b75cbe931bb053e261c4437413af3c8d8a39b119924c
generated: 2018-02-25T13:11:01.017154568-08:00
digest: sha256:c41d8c94dd87eccc61df25f2cdea2fd35e370a89d2c6742028585c7998339c41
generated: 2018-04-25T10:53:14.553461816+09:00
+1 -1
View File
@@ -3,7 +3,7 @@ dependencies:
version: 1.1.6
repository: https://kubernetes-charts.storage.googleapis.com/
- name: minio
version: 0.4.3
version: 1.1.1
repository: https://kubernetes-charts.storage.googleapis.com/
condition: minio.enabled
- name: jenkins
@@ -355,7 +355,7 @@ data:
enabled: false
s3:
enabled: true
endpoint: http://{{ .Release.Name }}-minio-svc:9000
endpoint: http://{{ .Release.Name }}-minio:9000
{{ end }}
gate:
host: {{ template "fullname" . }}-gate
@@ -22,9 +22,9 @@ spec:
restartPolicy: OnFailure
containers:
- name: post-install-job
image: "viglesiasce/minio-client:v0.4.0"
image: "minio/mc:RELEASE.2018-03-25T01-22-22Z"
command:
- sh
- -c
- "mc config host add {{.Release.Name}}-minio http://{{.Release.Name}}-minio-svc:9000 {{ .Values.minio.accessKey }} {{ .Values.minio.secretKey }} S3v4 && mc mb {{.Release.Name}}-minio/spinnaker"
- "mc config host add {{.Release.Name}}-minio http://{{.Release.Name}}-minio:9000 {{ .Values.minio.accessKey }} {{ .Values.minio.secretKey }} S3v4 && mc mb -p {{.Release.Name}}-minio/spinnaker"
{{- end }}