-
Notifications
You must be signed in to change notification settings - Fork 85
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
Add support for docker registry secret #197
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One nit about formatting, looks good otherwise.
pkg/apis/helm.cattle.io/v1/types.go
Outdated
@@ -37,6 +37,7 @@ type HelmChartSpec struct { | |||
AuthSecret *corev1.LocalObjectReference `json:"authSecret,omitempty"` | |||
|
|||
AuthPassCredentials bool `json:"authPassCredentials,omitempty"` | |||
DockerRegistrySecret *corev1.LocalObjectReference `json:"dockerRegistrySecret,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please make sure that all the files are formatted using go fmt
. Most editors do this for you but the indentation here appears to be off.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be fixed now
LGTM, but please sign-off your commits for DCO. |
This allows OCI registries to inherit configuration from the configured docker-registry secret Signed-off-by: Shaun Becker <[email protected]>
8ec412c
to
cea5af0
Compare
I had to look up what that even meant 😆. It should be good now. |
@brandond, do you have any estimate when this will make it into a release? |
This allows OCI registries to inherit configuration from the configured docker-registry secret
Linked Issues