You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
Back in my openshift dev days, I remember the recommendation
was to never use install-config after the cluster is installed. The
information in install config is only prevalent during install time and
can change when cluster is running.
We currently use the install config to get the apiserver URL. A more
reliable way IMHO of finding the same information would be using
the infrastructures API
TASK [set_fact] ********************************
fatal: [localhost]: FAILED! => {"msg": "The conditional check 'infrastructures is defined and infrastructures.get('resources', [{}])[0].get('status'. {}).get('apiServerURL', '') != ''' failed. The error was: template error while templating string: expected name or number. String: {% if infrastructures is defined and infrastructures.get('resources', [{}])[0].get('status'. {}).get('apiServerURL', '') != '' %} True {% else %} False {% endif %}\n\nThe error appears to be in '/opt/ansible/roles/migrationcontroller/tasks/main.yml': line 86, column 7, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n block:\n - set_fact:\n ^ here\n"}
111
Back in my openshift dev days, I remember the recommendation
was to never use install-config after the cluster is installed. The
information in install config is only prevalent during install time and
can change when cluster is running.
We currently use the install config to get the apiserver URL. A more
reliable way IMHO of finding the same information would be using
the infrastructures API
The text was updated successfully, but these errors were encountered: