From 062091c9deaadc2b745d6d5315ec25f50eb86dfb Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Mon, 17 Feb 2020 10:50:38 -0500 Subject: [PATCH] openshift-apps/coreos-ostree-importer: fix volume names in deploymentconfig They didn't match the volume names below. --- .../coreos-ostree-importer/templates/deploymentconfig.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/openshift-apps/coreos-ostree-importer/templates/deploymentconfig.yml b/roles/openshift-apps/coreos-ostree-importer/templates/deploymentconfig.yml index da6aeb58bc..e145f8627f 100644 --- a/roles/openshift-apps/coreos-ostree-importer/templates/deploymentconfig.yml +++ b/roles/openshift-apps/coreos-ostree-importer/templates/deploymentconfig.yml @@ -25,18 +25,18 @@ spec: volumeMounts: - name: fedora-ostree-content-volume mountPath: /mnt/koji - - name: fedora-messaging-config + - name: fedora-messaging-config-volume mountPath: /etc/fedora-messaging readOnly: true - - name: fedora-messaging-ca + - name: fedora-messaging-ca-volume mountPath: "/etc/pki/fedora-messaging/{{ fedora_messaging_ca_file }}" subPath: "{{ fedora_messaging_ca_file }}" readOnly: true - - name: fedora-messaging-crt + - name: fedora-messaging-crt-volume mountPath: "/etc/pki/fedora-messaging/{{ fedora_messaging_cert_file }}" subPath: "{{ fedora_messaging_cert_file }}" readOnly: true - - name: fedora-messaging-key + - name: fedora-messaging-key-volume mountPath: "/etc/pki/fedora-messaging/{{ fedora_messaging_key_file }}" subPath: "{{ fedora_messaging_key_file }}" readOnly: true