Fix some issues in the RadosGW chart
This commit is contained in:
parent
d44ddd2256
commit
3df5e2357f
3 changed files with 10 additions and 5 deletions
|
@ -50,7 +50,7 @@ Generate a CEPH keyring file, suitable for base64 encoding
|
|||
{{- define "radosgw.keyringFile" -}}
|
||||
[client.{{ .Client }}]
|
||||
key = {{ .Key }}
|
||||
{{- end --}
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
Helper for joining a list
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
---
|
||||
apiVersion: apps/v1
|
||||
kind: StatefulSet
|
||||
metadata:
|
||||
|
@ -24,7 +25,10 @@ spec:
|
|||
{{- toYaml . | nindent 8 }}
|
||||
{{- end }}
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
- env:
|
||||
- name: CEPH_DAEMON
|
||||
value: RGW
|
||||
name: {{ .Chart.Name }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
ports:
|
||||
|
@ -42,15 +46,15 @@ spec:
|
|||
resources:
|
||||
{{- toYaml .Values.resources | nindent 12 }}
|
||||
volumeMounts:
|
||||
- mountPath:/etc/ceph/ceph.conf
|
||||
- mountPath: /etc/ceph/ceph.conf
|
||||
name: ceph-conf
|
||||
subPath: ceph.conf
|
||||
readOnly: true
|
||||
- mountPath:/etc/ceph/ceph.client.admin.keyring
|
||||
- mountPath: /etc/ceph/ceph.client.admin.keyring
|
||||
name: ceph-keyring
|
||||
subPath: client.admin.keyring
|
||||
readOnly: true
|
||||
- mountPath:/var/lib/ceph/bootstrap-rgw.keyring
|
||||
- mountPath: /var/lib/ceph/bootstrap-rgw.keyring
|
||||
name: ceph-keyring
|
||||
subPath: bootstrap-rgw.keyring
|
||||
readOnly: true
|
||||
|
|
|
@ -65,6 +65,7 @@ spec:
|
|||
httpGet:
|
||||
port: http
|
||||
path: /
|
||||
initialDelaySeconds: 30
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
port: http
|
||||
|
|
Loading…
Reference in a new issue