aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/operator/charts/etcd-operator/templates/restore-etcd-crd.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'vnfs/DAaaS/deploy/operator/charts/etcd-operator/templates/restore-etcd-crd.yaml')
-rw-r--r--vnfs/DAaaS/deploy/operator/charts/etcd-operator/templates/restore-etcd-crd.yaml28
1 files changed, 28 insertions, 0 deletions
diff --git a/vnfs/DAaaS/deploy/operator/charts/etcd-operator/templates/restore-etcd-crd.yaml b/vnfs/DAaaS/deploy/operator/charts/etcd-operator/templates/restore-etcd-crd.yaml
new file mode 100644
index 00000000..73faaab8
--- /dev/null
+++ b/vnfs/DAaaS/deploy/operator/charts/etcd-operator/templates/restore-etcd-crd.yaml
@@ -0,0 +1,28 @@
+{{- if .Values.customResources.createRestoreCRD }}
+---
+apiVersion: "etcd.database.coreos.com/v1beta2"
+kind: "EtcdRestore"
+metadata:
+ # An EtcdCluster with the same name will be created
+ name: {{ .Values.etcdCluster.name }}
+ labels:
+ chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
+ app: {{ template "etcd-restore-operator.name" . }}
+ heritage: {{ .Release.Service }}
+ release: {{ .Release.Name }}
+ annotations:
+ "helm.sh/hook": "post-install"
+ "helm.sh/hook-delete-policy": "before-hook-creation"
+spec:
+ clusterSpec:
+ size: {{ .Values.etcdCluster.size }}
+ baseImage: "{{ .Values.etcdCluster.image.repository }}"
+ version: {{ .Values.etcdCluster.image.tag }}
+ pod:
+{{ toYaml .Values.etcdCluster.pod | indent 6 }}
+ {{- if .Values.etcdCluster.enableTLS }}
+ TLS:
+{{ toYaml .Values.etcdCluster.tls | indent 6 }}
+ {{- end }}
+{{ toYaml .Values.restoreOperator.spec | indent 2 }}
+{{- end}} \ No newline at end of file