diff --git a/ceph-osd/Chart.yaml b/ceph-osd/Chart.yaml index dbf096fd5..4525dd12b 100644 --- a/ceph-osd/Chart.yaml +++ b/ceph-osd/Chart.yaml @@ -15,6 +15,6 @@ apiVersion: v1 appVersion: v1.0.0 description: OpenStack-Helm Ceph OSD name: ceph-osd -version: 0.1.25 +version: 0.1.26 home: https://github.com/ceph/ceph ... diff --git a/ceph-osd/templates/daemonset-osd.yaml b/ceph-osd/templates/daemonset-osd.yaml index 6dbab0dd1..d188d769a 100644 --- a/ceph-osd/templates/daemonset-osd.yaml +++ b/ceph-osd/templates/daemonset-osd.yaml @@ -136,6 +136,9 @@ spec: - name: pod-var-lib-ceph-tmp mountPath: /var/lib/ceph/tmp readOnly: false + - name: pod-var-crash + mountPath: /var/crash + readOnly: false - name: ceph-log-ownership {{ tuple $envAll "ceph_osd" | include "helm-toolkit.snippets.image" | indent 10 }} {{ dict "envAll" $envAll "application" "osd" "container" "ceph_log_ownership" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }} @@ -278,6 +281,9 @@ spec: - name: pod-var-log mountPath: /var/log/ceph readOnly: false + - name: pod-var-crash + mountPath: /var/crash + readOnly: false containers: - name: log-runner {{ tuple $envAll "ceph_osd" | include "helm-toolkit.snippets.image" | indent 10 }} @@ -441,6 +447,9 @@ spec: - name: pod-var-log mountPath: /var/log/ceph readOnly: false + - name: pod-var-crash + mountPath: /var/crash + readOnly: false volumes: - name: pod-tmp emptyDir: {} @@ -472,6 +481,10 @@ spec: hostPath: path: /var/lib/openstack-helm/ceph/var-tmp type: DirectoryOrCreate + - name: pod-var-crash + hostPath: + path: /var/crash + type: DirectoryOrCreate - name: pod-var-log emptyDir: {} - name: ceph-osd-bin diff --git a/releasenotes/notes/ceph-osd.yaml b/releasenotes/notes/ceph-osd.yaml index 277ee0bbb..c2e4b0cc3 100644 --- a/releasenotes/notes/ceph-osd.yaml +++ b/releasenotes/notes/ceph-osd.yaml @@ -26,4 +26,5 @@ ceph-osd: - 0.1.23 Use full image ref for docker official images - 0.1.24 Ceph OSD Init Improvements - 0.1.25 Export crash dumps when Ceph daemons crash + - 0.1.26 Mount /var/crash inside ceph-osd pods ...