the-new-hotness, release-monitoring: Fix privatefile paths

Signed-off-by: Michal Konečný <mkonecny@redhat.com>
This commit is contained in:
Michal Konečný 2019-02-27 15:26:05 +01:00
parent f1e735e708
commit f6147534af
2 changed files with 10 additions and 10 deletions

View file

@ -18,30 +18,30 @@
app: release-monitoring
secret_name: release-monitoring-fedora-messaging-ca
key: fedora-messaging-release-monitoring.ca
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/ca.crt
privatefile: "rabbitmq/{{env}}/pki/ca.crt"
- role: openshift/secret-file
app: release-monitoring
secret_name: release-monitoring-fedora-messaging-key
key: fedora-messaging-release-monitoring.key
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/release-monitoring.stg.key
privatefile: "rabbitmq/{{env}}/pki/private/release-monitoring.{{env_suffix}}.key"
when: env == "staging"
- role: openshift/secret-file
app: release-monitoring
secret_name: release-monitoring-fedora-messaging-cert
key: fedora-messaging-release-monitoring.crt
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/release-monitoring.stg.crt
privatefile: "rabbitmq/{{env}}/pki/private/release-monitoring.{{env_suffix}}.crt"
when: env == "staging"
- role: openshift/secret-file
app: release-monitoring
secret_name: release-monitoring-fedora-messaging-key
key: fedora-messaging-release-monitoring.key
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/release-monitoring.key
privatefile: "rabbitmq/{{ env }}/pki/private/release-monitoring.key"
when: env != "staging"
- role: openshift/secret-file
app: release-monitoring
secret_name: release-monitoring-fedora-messaging-cert
key: fedora-messaging-release-monitoring.crt
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/release-monitoring.crt
privatefile: "rabbitmq/{{ env }}/pki/private/release-monitoring.crt"
when: env != "staging"
- role: openshift/object
app: release-monitoring

View file

@ -19,34 +19,34 @@
app: the-new-hotness
secret_name: the-new-hotness-fedora-messaging-ca
key: fedora-messaging-the-new-hotness.ca
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/ca.crt
privatefile: "rabbitmq/{{env}}/pki/ca.crt"
- role: openshift/secret-file
app: the-new-hotness
secret_name: the-new-hotness-fedora-messaging-key
key: fedora-messaging-the-new-hotness.key
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/the-new-hotness.stg.key
privatefile: "rabbitmq/{{env}}/pki/private/the-new-hotness.{{env_suffix}}.key"
when: env == "staging"
- role: openshift/secret-file
app: the-new-hotness
secret_name: the-new-hotness-fedora-messaging-cert
key: fedora-messaging-the-new-hotness.crt
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/the-new-hotness.stg.crt
privatefile: "rabbitmq/{{env}}/pki/private/the-new-hotness.{{env_suffix}}.crt"
when: env == "staging"
- role: openshift/secret-file
app: the-new-hotness
secret_name: the-new-hotness-fedora-messaging-key
key: fedora-messaging-the-new-hotness.key
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/the-new-hotness.key
privatefile: "rabbitmq/{{env}}/pki/private/the-new-hotness.key"
when: env != "staging"
- role: openshift/secret-file
app: the-new-hotness
secret_name: the-new-hotness-fedora-messaging-cert
key: fedora-messaging-the-new-hotness.crt
privatefile: {{private}}/files/rabbitmq/{{env}}/pki/private/the-new-hotness.crt
privatefile: "rabbitmq/{{env}}/pki/private/the-new-hotness.crt"
when: env != "staging"
- role: openshift/object