diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-12-07 13:18:31 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-12-07 13:18:31 -0500 |
commit | e292ecde9440611a026ab735fe8bf056439cc9dc (patch) | |
tree | 9cf0ba563507771e1678d7c5ee27fbbebf436858 | |
parent | 33b127157d3339caa690e6b238a81f7fe83f1383 (diff) | |
download | openshift-e292ecde9440611a026ab735fe8bf056439cc9dc.tar.gz openshift-e292ecde9440611a026ab735fe8bf056439cc9dc.tar.bz2 openshift-e292ecde9440611a026ab735fe8bf056439cc9dc.tar.xz openshift-e292ecde9440611a026ab735fe8bf056439cc9dc.zip |
Fix incorrect register name master registry auth
Corrects register variable name to registry auth support.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1511374
-rw-r--r-- | roles/openshift_master/tasks/registry_auth.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/tasks/registry_auth.yml b/roles/openshift_master/tasks/registry_auth.yml index ca04d2243..8b342a5b4 100644 --- a/roles/openshift_master/tasks/registry_auth.yml +++ b/roles/openshift_master/tasks/registry_auth.yml @@ -32,7 +32,7 @@ when: - openshift_docker_alternative_creds | default(False) | bool - oreg_auth_user is defined - - (not docker_cli_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool + - (not master_oreg_auth_credentials_stat.stat.exists or oreg_auth_credentials_replace) | bool register: master_oreg_auth_credentials_create_alt notify: - restart master api |