Skip to content
Snippets Groups Projects
Commit 7e76c381 authored by Bryan BRANCOTTE's avatar Bryan BRANCOTTE
Browse files

ceph-fs should be used in place of isilon

parent 02cd4da7
No related branches found
No related tags found
No related merge requests found
Pipeline #132534 passed
Pipeline: shiny-k8s-example

#132535

    ...@@ -15,7 +15,7 @@ type: application ...@@ -15,7 +15,7 @@ type: application
    # This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
    # to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
    # Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
    version: 0.7.1 version: 0.7.2
    # This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
    # incremented each time you make changes to the application. Versions are not expected to # incremented each time you make changes to the application. Versions are not expected to
    ......
    ...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
    {{- if and (eq .Values.storage.className "ceph-block") .Values.nodowntime.enabled }} {{- if and (eq .Values.storage.className "ceph-block") .Values.nodowntime.enabled }}
    {{- required "Using ceph-block storage is incompatible with nodowntime enabled." "" }} {{- required "Using ceph-block storage is incompatible with nodowntime enabled." "" }}
    {{- end }} {{- end }}
    {{- if not (or (eq .Values.storage.className "ceph-block") (eq .Values.storage.className "isilon")) }} {{- if not (or (eq .Values.storage.className "ceph-fs") (eq .Values.storage.className "ceph-block") (eq .Values.storage.className "isilon")) }}
    {{- required (printf "Storage class unkown (%s). Only isilon or ceph-block expected." .Values.storage.className) "" }} {{- required (printf "Storage class unkown (%s). Only isilon, ceph-fs or ceph-block expected." .Values.storage.className) "" }}
    {{- end }} {{- end }}
    apiVersion: v1 apiVersion: v1
    kind: PersistentVolumeClaim kind: PersistentVolumeClaim
    ...@@ -21,5 +21,5 @@ spec: ...@@ -21,5 +21,5 @@ spec:
    resources: resources:
    requests: requests:
    storage: {{ (default "1Gi" .Values.storage.size ) | quote }} storage: {{ (default "1Gi" .Values.storage.size ) | quote }}
    storageClassName: {{ (default "isilon" .Values.storage.className ) | quote }} storageClassName: {{ (default "ceph-fs" .Values.storage.className ) | quote }}
    {{- end }} {{- end }}
    \ No newline at end of file
    ...@@ -37,5 +37,5 @@ registry: ...@@ -37,5 +37,5 @@ registry:
    storage: storage:
    enabled: false enabled: false
    size: "1Gi" size: "1Gi"
    className: "isilon" # could be ceph-block, incompatible with nodowntime className: "ceph-fs" # could be ceph-block, incompatible with nodowntime
    keepOnDelete: true keepOnDelete: true
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment