-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: helm configuration, changed role names and set default port to 4200
- Loading branch information
Showing
6 changed files
with
24 additions
and
16 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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"id": "THEME_MFE", | ||
"id": "THEME_UI", | ||
{{- if .Values.app.routing.hostName }} | ||
"remoteEntry": "https://{{ .Values.app.routing.hostName }}{{ .Values.app.routing.path }}remoteEntry.js", | ||
{{- else if .Values.global.hostName }} | ||
|
@@ -11,11 +11,11 @@ | |
{{- else if .Values.global.hostName }} | ||
"remoteBaseUrl": "https://{{ .Values.global.hostName }}{{ .Values.app.routing.path }}", | ||
{{- end }} | ||
"exposedModule": "./ThemeModule", | ||
"displayName": "ThemeModule", | ||
"exposedModule": "./ThemeMgmtModule", | ||
"displayName": "ThemeMgmtModule", | ||
"moduleType": "ANGULAR", | ||
"wcTagName": "UPMF", | ||
"appVersion": "{{ .Chart.Version }}", | ||
"note": "Theme mgmt module auto import via MF operator", | ||
"note": "Theme Mgmt module auto import via MF operator", | ||
"contact": "[email protected]" | ||
} |
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 |
---|---|---|
@@ -1,26 +1,34 @@ | ||
app: | ||
name: ui | ||
image: | ||
repository: "onecx/onecx-theme-svc" | ||
repository: 'onecx/onecx-theme-ui' | ||
routing: | ||
enabled: true | ||
operator: | ||
apm: | ||
enabled: false | ||
keycloak: | ||
enabled: true | ||
client: "{ \n \"clientId\": \"theme-mgmt-ui\",\n \"enabled\": true,\n \"description\": \"Keycloak client for theme-mgmt-ui\",\n \"redirectUris\": [\"*\"],\n \"webOrigins\": [\"*\"],\n \"publicClient\": true,\n \"protocol\": \"openid-connect\"\n}" | ||
client: |- | ||
{ | ||
"clientId": "theme-mgmt-ui", | ||
"enabled": true, | ||
"description": "Keycloak client for theme-mgmt-ui", | ||
"redirectUris": ["*"], | ||
"webOrigins": ["*"], | ||
"publicClient": true, | ||
"protocol": "openid-connect" | ||
} | ||
roles: |- | ||
[ | ||
{ | ||
"name": "onecx-portal-admin", | ||
"description": "OneCX portal platform admin" | ||
"name": "onecx-theme-admin", | ||
"description": "OneCX Theme admin" | ||
}, | ||
{ | ||
"name": "onecx-portal-user", | ||
"description": "OneCX portal platform user" | ||
"name": "onecx-theme-user", | ||
"description": "OneCX Theme user" | ||
} | ||
] | ||
# PIPE Config | ||
|
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