-
Notifications
You must be signed in to change notification settings - Fork 8
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
Providers only allow one namespace, but Spinnaker allows many to be used. #128
Comments
I've given this some thought and I think we need to provide a backwards compatible approach for now. We should add a {
"name": "provider-name",
"host": "provider-host",
"caData": "provider-ca-data",
"tokenProvider": "provider-token-provider",
"namespace": "OPTIONAL",
"namespaces": [
"OPTIONAL"
]
} Some fields redacted for legibility. Having both the We should create a new SQL table
|
Seems like a sane approach. I'd also make sure the API calls have at most one of |
The idea now is just to allow setting both. If both are set, then the value of Let me know if this answers your question. |
This will likely require a migration and splitting the single table apart, unless we do something gross like splitting a string.
The text was updated successfully, but these errors were encountered: