8ef5d94674
This PS refactors the ceph chart and secret generation process. The updated chart replaces the existing "bootstrap" chart. Additionally, Ceph manifests and deployment guides were modified accordingly. Change-Id: I6f5bb88fc0f40cfee8865d9dab83859d765e7537 Co-Authored-By: Larry Rensing <lr699s@att.com>
13 lines
277 B
YAML
13 lines
277 B
YAML
{{- if .Values.manifests_enabled.deployment }}
|
|
apiVersion: policy/v1beta1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: ceph-mon
|
|
spec:
|
|
minAvailable: {{ .Values.pod_disruption_budget.mon.min_available }}
|
|
selector:
|
|
matchLabels:
|
|
app: ceph
|
|
daemon: mon
|
|
{{- end }}
|