-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-generate client secret for the webui (#21)
* Automatically set webui client secret in dex config Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> * Update comment Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> * Rename helper methods Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> * Formatting Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> * Bump chart version, update externalHostname comment Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> * Formatting Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> * Add condition around staticClients in Dex config Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com> --------- Signed-off-by: Eamonn Mansour <47121388+eamansour@users.noreply.github.com>
- Loading branch information
Showing
8 changed files
with
39 additions
and
59 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -11,4 +11,4 @@ type: application | |
# | ||
home: "galasa.dev" | ||
# | ||
version: "0.33.0" | ||
version: "0.34.0" |
This file contains 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,19 @@ | ||
# | ||
# Copyright contributors to the Galasa project | ||
# | ||
# SPDX-License-Identifier: EPL-2.0 | ||
# | ||
|
||
{{/* | ||
Returns the URI scheme of the host serving the ecosystem | ||
*/}} | ||
{{- define "ecosystem.host.scheme" -}} | ||
{{- empty .Values.ingress.tls | ternary "http" "https" }} | ||
{{- end -}} | ||
|
||
{{/* | ||
Returns the external URL of the ecosystem | ||
*/}} | ||
{{- define "ecosystem.host.url" -}} | ||
{{- printf "%s://%s" (include "ecosystem.host.scheme" .) (.Values.externalHostname) }} | ||
{{- end -}} |
This file contains 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 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 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 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 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