|
@@ -4,12 +4,12 @@
|
|
|
apiVersion: {{ template "common.capabilities.deployment.apiVersion" . }}
|
|
|
kind: Deployment
|
|
|
metadata:
|
|
|
- name: {{ template "common.names.fullname" . }}
|
|
|
+ name: {{ template "common.names.fullname" . }}-minio
|
|
|
labels:
|
|
|
app: {{ template "common.names.name" . }}
|
|
|
- chart: {{ template "common.names.chart" . }}
|
|
|
release: {{ .Release.Name }}
|
|
|
- heritage: {{ .Release.Service }}
|
|
|
+ app.kubernetes.io/name: {{ template "common.names.name" . }}
|
|
|
+ app.kubernetes.io/instance: {{ .Release.Name }}
|
|
|
annotations:
|
|
|
rollme: {{ randAlphaNum 5 | quote }}
|
|
|
spec:
|
|
@@ -20,12 +20,12 @@ spec:
|
|
|
matchLabels:
|
|
|
app: {{ template "common.names.name" . }}
|
|
|
release: {{ .Release.Name }}
|
|
|
+ app.kubernetes.io/name: {{ template "common.names.name" . }}
|
|
|
+ app.kubernetes.io/instance: {{ .Release.Name }}
|
|
|
template:
|
|
|
metadata:
|
|
|
name: {{ template "common.names.fullname" . }}
|
|
|
labels:
|
|
|
- app: {{ template "common.names.name" . }}
|
|
|
- release: {{ .Release.Name }}
|
|
|
{{- include "common.labels.selectorLabels" . | nindent 8 }}
|
|
|
annotations: {{ include "common.annotations" . | nindent 8 }}
|
|
|
spec:
|
|
@@ -43,7 +43,7 @@ spec:
|
|
|
command:
|
|
|
- sh
|
|
|
- -c
|
|
|
- - "until curl $apiURL/status; do sleep 2; done"
|
|
|
+ - "until curl --silent $apiURL/status; do sleep 2; done"
|
|
|
{{ end }}
|
|
|
containers:
|
|
|
- name: {{ .Chart.Name }}
|