Get the name of the variable right

Signed-off-by: Clement Verna <cverna@tutanota.com>
This commit is contained in:
Clement Verna
2018-06-08 11:56:49 +02:00
parent f1f329821b
commit ea0fda6584
2 changed files with 8 additions and 8 deletions

View File

@@ -125,8 +125,8 @@
docker_cert_name: "containerstable",
docker_cert_dir: "/etc/docker/certs.d/registry.stg.fedoraproject.org",
candidate_registry: "candidate-registry.stg.fedoraproject.org",
candidate_registry_osbs_username: "{{candidate_registry_osbs_staging_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_staging_password}}",
candidate_registry_osbs_username: "{{candidate_registry_osbs_stg_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_stg_password}}",
when: env == "staging",
delegate_to: compose-x86-01.phx2.fedoraproject.org
}
@@ -135,8 +135,8 @@
docker_cert_name: "containerstable",
docker_cert_dir: "/etc/docker/certs.d/registry.fedoraproject.org",
candidate_registry: "candidate-registry.fedoraproject.org",
candidate_registry_osbs_username: "{{candidate_registry_osbs_production_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_production_password}}",
candidate_registry_osbs_username: "{{candidate_registry_osbs_prod_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_prod_password}}",
when: env == "production",
delegate_to: compose-x86-01.phx2.fedoraproject.org
}

View File

@@ -275,8 +275,8 @@
- {
role: push-docker,
candidate_registry: "{{docker_registry}}",
candidate_registry_osbs_username: "{{candidate_registry_osbs_staging_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_staging_password}}",
candidate_registry_osbs_username: "{{candidate_registry_osbs_stg_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_stg_password}}",
when: env == "staging"
}
- {
@@ -296,8 +296,8 @@
- {
role: push-docker,
candidate_registry: "{{docker_registry}}",
candidate_registry_osbs_username: "{{candidate_registry_osbs_production_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_production_password}}",
candidate_registry_osbs_username: "{{candidate_registry_osbs_prod_username}}",
candidate_registry_osbs_password: "{{candidate_registry_osbs_prod_password}}",
when: env == "production"
}