-
Notifications
You must be signed in to change notification settings - Fork 175
mantle: openstack: fix passing of openstack config file path #1840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mantle: openstack: fix passing of openstack config file path #1840
Conversation
one nit, but otherwise makes sense /approve |
This is a followup to b5eb5d6. We need to set $OS_CLIENT_CONFIG_FILE to the value given by the user, which is the path to the clouds.yaml on their local system.
71f8df9
to
a987e8f
Compare
/lgtm |
We need to tell the OpenStack bindings where to find the user-provided `clouds.yaml` file. Do this using the `YAMLOpts` field of the `ClientOpts`. See also discussions in coreos#1840.
We need to tell the OpenStack bindings where to find the user-provided `clouds.yaml` file. Do this using the `YAMLOpts` field of the `ClientOpts`. See also discussions in coreos#1840.
/lgtm |
We need to tell the OpenStack bindings where to find the user-provided `clouds.yaml` file. Do this using the `YAMLOpts` field of the `ClientOpts`. See also discussions in coreos#1840.
This will add some context so a user might know where to look on why this was done and how it works.
1c465bd
to
18da7cf
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: dustymabe, jlebon, miabbott The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
We need to tell the OpenStack bindings where to find the user-provided `clouds.yaml` file. Do this using the `YAMLOpts` field of the `ClientOpts`. See also discussions in #1840.
This is a followup to b5eb5d6. We need to set $OS_CLIENT_CONFIG_FILE
to the value given by the user, which is the path to the clouds.yaml
on their local system.