-
Notifications
You must be signed in to change notification settings - Fork 0
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
Enable deployment of dex-operator to MC #3
Conversation
@@ -10,7 +10,7 @@ jobs: | |||
- checkout | |||
- run: | |||
name: "Run tests" | |||
command: CGO_ENABLED=0 make test | |||
command: CGO_ENABLED=0 make test-all |
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.
renamed the target as it is overridden by the giant swarm defaults otherwise
@@ -0,0 +1,152 @@ | |||
|
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.
this is just the makefile that kubebuilder creates by default. Renamed so that it does not get overwritten by Align Files
@@ -6,4 +6,4 @@ home: "https://github.com/giantswarm/dex-operator" | |||
apiVersion: v1 | |||
annotations: | |||
application.giantswarm.io/team: "rainbow" | |||
config.giantswarm.io/version: 1.x.x | |||
config.giantswarm.io/version: "dex-operator" |
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.
still using a branch of config for the operator default values
@@ -0,0 +1,23 @@ | |||
package dex |
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.
the dex
package includes the types we need to marshal the dex config
The controller works when it's deployed. :)
The following config was added to the dex configuration using the mock connector:
|
Towards giantswarm/roadmap#1432
This includes various changes to the helm chart, makefile and formatting of the config secret to make the operator functional on MCs.