-
Notifications
You must be signed in to change notification settings - Fork 3
feat: integrate with keycloak #63
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
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
4a779e0
uds common 0.3.7
ericwyles a130f49
feat: keycloak integration using sso secret templating
ericwyles 75f8e0b
secret templating for the saml cert
ericwyles 8419aac
sso secret templating
ericwyles 31cfbd8
Merge branch 'main' into ewyles-keycloak
ericwyles faf1d4a
consolidate to uds-package template
ericwyles 9c8ae30
consolidate to uds-package template
ericwyles d702885
refactoring
ericwyles 8af116b
fix copy pasta
ericwyles b7f0ad0
renamed task
ericwyles 5083f6f
moved some more things to variables
ericwyles fefb429
cleaning up
ericwyles 47d093a
Merge branch 'main' into ewyles-keycloak
ericwyles ff8effc
update login name
ericwyles 0b504c8
wording
ericwyles 2841aeb
refactoring
ericwyles 7c5b2a7
refactoring
ericwyles f1af103
lint
ericwyles a71c6e8
skip secret and client generation if sso is not enabled
ericwyles b29f394
refactor
ericwyles 9a18f04
zarf constant
ericwyles d74acdb
missed a spot
ericwyles 1e9c398
refactor
ericwyles File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # This secret will be used if sso is disabled, instead of the templated one in uds-package.yaml. | ||
| # Sonarqube needs to mount the secret and creating it this way avoids creating an unnecessary | ||
| # client in the keycloak realm and unnecessary secret data in the cluster. | ||
| {{- if not .Values.sso.enabled }} | ||
|
|
||
| apiVersion: v1 | ||
| kind: Secret | ||
| metadata: | ||
| name: {{ .Values.sso.secretName }} | ||
| namespace: {{ .Release.Namespace }} | ||
| type: "Opaque" | ||
| stringData: | ||
| secret.properties: | | ||
| sonar.auth.saml.enabled: {{ .Values.sso.enabled }} | ||
|
|
||
| {{- end }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| domain: "###ZARF_VAR_DOMAIN###" | ||
| sso: | ||
| enabled: true | ||
| secretName: sonarqube-sso | ||
| saml: | ||
| providerName: Keycloak # This is displayed on the SonarQube landing screen ("Log in with <providerName>") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.