From 6ff22c7f9b81a325f0026428b0ac8c03717c5674 Mon Sep 17 00:00:00 2001 From: Ryan Lerch Date: Mon, 11 Sep 2023 19:42:18 +1000 Subject: [PATCH] maubot: add fedoramessaging cert secrets volumes Signed-off-by: Ryan Lerch --- .../maubot/files/deploymentconfig.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/roles/openshift-apps/maubot/files/deploymentconfig.yml b/roles/openshift-apps/maubot/files/deploymentconfig.yml index fe5de13742..b2d173cfcf 100644 --- a/roles/openshift-apps/maubot/files/deploymentconfig.yml +++ b/roles/openshift-apps/maubot/files/deploymentconfig.yml @@ -39,6 +39,15 @@ spec: - name: fedora-messaging-config-volume mountPath: /etc/fedora-messaging/ readOnly: true + - name: fedora-messaging-ca-volume + mountPath: /etc/pki/rabbitmq/ca + readOnly: true + - name: fedora-messaging-key-volume + mountPath: /etc/pki/rabbitmq/key + readOnly: true + - name: fedora-messaging-crt-volume + mountPath: /etc/pki/rabbitmq/crt + readOnly: true readinessProbe: timeoutSeconds: 1 initialDelaySeconds: 5 @@ -70,6 +79,15 @@ spec: - name: fedora-messaging-config-volume configMap: name: fedora-messaging-configmap + - name: fedora-messaging-ca-volume + secret: + secretName: maubot-fedora-messaging-ca + - name: fedora-messaging-key-volume + secret: + secretName: maubot-fedora-messaging-key + - name: fedora-messaging-crt-volume + secret: + secretName: maubot-fedora-messaging-crt triggers: - type: ImageChange imageChangeParams: