summaryrefslogtreecommitdiffstats
path: root/setup/projects/services/templates/01-mysql-secret.yml.j2
diff options
context:
space:
mode:
Diffstat (limited to 'setup/projects/services/templates/01-mysql-secret.yml.j2')
-rw-r--r--setup/projects/services/templates/01-mysql-secret.yml.j228
1 files changed, 28 insertions, 0 deletions
diff --git a/setup/projects/services/templates/01-mysql-secret.yml.j2 b/setup/projects/services/templates/01-mysql-secret.yml.j2
new file mode 100644
index 0000000..22412bc
--- /dev/null
+++ b/setup/projects/services/templates/01-mysql-secret.yml.j2
@@ -0,0 +1,28 @@
+apiVersion: v1
+kind: Template
+metadata:
+ name: mysql-secret
+ labels:
+ app: mysql
+ annotations:
+ descriptions: "MySQL Secrets"
+objects:
+- apiVersion: v1
+ kind: Secret
+ metadata:
+ annotations:
+ template.openshift.io/expose-ipe_password: '{.data[''ipe-password'']}'
+ template.openshift.io/expose-root_password: '{.data[''root-password'']}'
+ template.openshift.io/expose-pma_password: '{.data[''pma-password'']}'
+ name: mysql
+ stringData:
+ ipe-password: "{{ ands_secrets.ipepdv }}"
+ root-password: "{{ ands_secrets.ipepdv }}"
+ pma-password: "${PMA_PASSWORD}"
+parameters:
+- description: Password for the PMA connection user.
+ displayName: PMA Connection Password
+ from: '[a-zA-Z0-9]{16}'
+ generate: expression
+ name: PMA_PASSWORD
+ required: true