a4078d8a7a
Features of the script include: - creating and removing a snapshot within Ceph for a PV - backing up and restoring a PV within Ceph - listing the RBD image details (watchers, thin/thick provisioned usage, image properties) and snapshot information Take note that all backups are by default stored locally in "/var/lib/openstack-helm/ceph/backup" on the POD hosting this utility container Change-Id: I5de30d5337754a411b5e1162a215596afb469bac
51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
{{/*
|
|
Copyright 2017 The Openstack-Helm Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- if and .Values.manifests.configmap_bin .Values.deployment.ceph }}
|
|
{{- $envAll := . }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ printf "%s-%s" $envAll.Release.Name "bin" }}
|
|
data:
|
|
{{- if .Values.images.local_registry.active }}
|
|
image-repo-sync.sh: |
|
|
{{- include "helm-toolkit.scripts.image_repo_sync" . | indent 4 }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.bootstrap.enabled }}
|
|
bootstrap.sh: |
|
|
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
{{- end }}
|
|
|
|
managekey.sh: |
|
|
{{ tuple "bin/_managekey.sh.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
|
|
ceph-utility-rootwrap: |
|
|
{{ tuple "bin/utility/_ceph-utility-rootwrap.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
|
|
nccli: |
|
|
{{ tuple "bin/utility/_nccli.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
|
|
osd-maintenance: |
|
|
{{ tuple "bin/utility/_osd-maintenance.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
|
|
rbd_pv: |
|
|
{{ tuple "bin/utility/_rbd_pv.tpl" . | include "helm-toolkit.utils.template" | indent 4 }}
|
|
|
|
{{- end }}
|