From 0b972f0816408fc696e75fd55de5cd160d6d7ccc Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Thu, 20 Aug 2020 04:06:35 +0200 Subject: Add MySQL service (for Michele and other low-volume users) --- .../services/templates/01-mysql-secret.yml.j2 | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 setup/projects/services/templates/01-mysql-secret.yml.j2 (limited to 'setup/projects/services/templates') 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 -- cgit v1.2.3