File tree Expand file tree Collapse file tree 12 files changed +30
-9
lines changed
Expand file tree Collapse file tree 12 files changed +30
-9
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ type: application
66# This is the chart version. This version number should be incremented each time you make changes
77# to the chart and its templates, including the app version.
88# Versions are expected to follow Semantic Versioning (https://semver.org/)
9- version : 1.9 .0
9+ version : 1.10 .0
1010
1111# This is the version number of the application being deployed. This version number should be
1212# incremented each time you make changes to the application. Versions are not expected to
@@ -21,11 +21,11 @@ dependencies:
2121 - name : item-service
2222 version : 1.4.0
2323 - name : keycloak-config
24- version : 0.1.1
24+ version : 0.1.2
2525 - name : lms-data-service
26- version : 1.7 .0
26+ version : 1.8 .0
2727 - name : ojt
28- version : 1.6 .0
28+ version : 1.7 .0
2929 - name : user-service
3030 version : 1.4.0
3131
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ type: application
77# This is the chart version. This version number should be incremented each time you make changes
88# to the chart and its templates, including the app version.
99# Versions are expected to follow Semantic Versioning (https://semver.org/)
10- version : 0.1.1
10+ version : 0.1.2
1111
1212# This is the version number of the application being deployed. This version number should be
1313# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ metadata:
99data :
1010 # Public URL for accessing the Keycloak server on the internet
1111 keycloak.publicServerUrl : {{ .Values.publicServerUrl | quote }}
12- # URL which is only accessible within the k8s cluster
13- grails.plugin.springsecurity.rest.keycloak.serverUrl : {{ .Values.internalServerUrl | quote }}
12+ grails.plugin.springsecurity.rest.keycloak.serverUrl : {{ .Values.publicServerUrl | quote }}
1413 grails.plugin.springsecurity.rest.keycloak.masterAdminUsername : {{ required "masterAdminUsername cannot be emtpy" .Values.masterAdminUsername | quote }}
1514---
1615{{- if .Values.realmConfigmapEnabled }}
3332 grails.plugin.springsecurity.rest.keycloak.key : {{ .Values.clientId | quote }}
3433 # Username for an admin of this realm. Password is defined in keycloak-realm-secret
3534 grails.plugin.springsecurity.rest.keycloak.realmAdminUsername : {{ required "realmAdminUsername cannot be emtpy" .Values.realmAdminUsername | quote }}
35+ # The desired scopes when requesting an access token. This is a space seperated list.
36+ grails.plugin.springsecurity.rest.keycloak.scopes : {{ .Values.scopes | quote }}
3637{{- end }}
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ databasePassword: ""
1515realmName : " "
1616clientId : " ojt"
1717clientSecret : " "
18+ # The desired scopes when requesting an access token. This is a space seperated list.
19+ scopes : " email profile"
1820# Credentials for the admin of the Keycloak server (master realm)
1921masterAdminUsername : " "
2022masterAdminPassword : " "
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ type: application
77# This is the chart version. This version number should be incremented each time you make changes
88# to the chart and its templates, including the app version.
99# Versions are expected to follow Semantic Versioning (https://semver.org/)
10- version : 1.7 .0
10+ version : 1.8 .0
1111
1212# This is the version number of the application being deployed. This version number should be
1313# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 1515 {{ $key }}: {{ $value | quote }}
1616 {{- end }}
1717 {{- end }}
18+ hclabs.lmsDataService.loginUsingSso : {{ .Values.loginUsingSso | quote }}
Original file line number Diff line number Diff line change @@ -112,6 +112,10 @@ affinity: {}
112112# For example, custom.property.one: "value1"
113113additionalConfig : {}
114114
115+ # Boolean that when true, users will login to LMS Data Service using a SSO authentication provider
116+ # with a redirect URL rather than entering their their credentials on the LMS Data Service web app login page.
117+ loginUsingSso : true
118+
115119# Encryption key for storing sensitive values in the database
116120encryptionPassword : " "
117121
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ type: application
77# This is the chart version. This version number should be incremented each time you make changes
88# to the chart and its templates, including the app version.
99# Versions are expected to follow Semantic Versioning (https://semver.org/)
10- version : 1.6 .0
10+ version : 1.7 .0
1111
1212# This is the version number of the application being deployed. This version number should be
1313# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 1818 {{- if .Values.mail.password }}
1919 grails.mail.password : {{ .Values.mail.password | quote }}
2020 {{- end }}
21+ hclabs.ojt.loginUsingSso : {{ .Values.loginUsingSso | quote }}
Original file line number Diff line number Diff line change @@ -117,6 +117,10 @@ mail:
117117# For example, custom.property.one: "value1"
118118additionalConfig : {}
119119
120+ # Boolean that when true, users will login to OJT using a SSO authentication provider
121+ # with a redirect URL rather than entering their their credentials on the OJT web app login page.
122+ loginUsingSso : true
123+
120124learningHistorySchedulerJob :
121125 enabled : true
122126 # Run every 30 minutes
You can’t perform that action at this time.
0 commit comments