File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -763,8 +763,8 @@ spec:
763763 - keycloak
764764 properties :
765765 # Use ghcr.io/guidewire-oss/fern-platform:latest or docker.io/guidewireoss/fern-platform:latest
766- image : ghcr .io/guidewire-oss /fern-platform:0.1.0
767- imagePullPolicy : Always
766+ image : docker .io/library /fern-platform:latest
767+ imagePullPolicy : Never
768768 namespace : fern-platform
769769 ports :
770770 - port : 8080
Original file line number Diff line number Diff line change @@ -402,6 +402,12 @@ func (m *Manager) bindEnvVars() error {
402402 if err := viper .BindEnv ("auth.oauth.managerGroups" , "OAUTH_MANAGER_GROUPS" ); err != nil {
403403 return err
404404 }
405+ if err := viper .BindEnv ("auth.oauth.adminScopes" , "OAUTH_ADMIN_SCOPES" ); err != nil {
406+ return err
407+ }
408+ if err := viper .BindEnv ("auth.oauth.managerScopes" , "OAUTH_MANAGER_SCOPES" ); err != nil {
409+ return err
410+ }
405411 if err := viper .BindEnv ("auth.oauth.userIdField" , "OAUTH_USER_ID_FIELD" ); err != nil {
406412 return err
407413 }
You can’t perform that action at this time.
0 commit comments