-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Issues setting OPENSHIFT_INSTALL_PULL_SECRET variable #888
Comments
We are removing environment variables altogether (#861). Once that merges, I'm going to close this out since it will no longer be applicable. |
You should transition to supplying an install-config instead (as documented in #861), if you don't want to go through the wizard. |
#861 has merged. /close |
@crawford: Closing this issue. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Version
Platform (aws|libvirt|openstack):
aws
What happened?
install fails when setting the OPENSHIFT_INSTALL_PULL_SECRET environment variable for install. Works fine when using OPENSHIFT_INSTALL_PULL_SECRET_PATH.
How to reproduce it (as minimally and precisely as possible)?
Set the variable and execute a create. The installation fails.
export OPENSHIFT_INSTALL_PULL_SECRET='{ "auths": { "quay.io": { "auth": "fdfgggsfgfgfgsfgggsggfggsgdfgg", "email": "" } } }'
Anything else we need to know?
If you set the variable as a here-doc, installation works.
export OPENSHIFT_INSTALL_PULL_SECRET=$( cat <<EOF
{ "auths": { "quay.io": { "auth": "fdfgggsfgfgfgsfgggsggfggsgdfgg", "email": "" } } }'
EOF
)
This should be included in the documentation to prevent others from having the same issue.
The text was updated successfully, but these errors were encountered: