Skip to content

Commit

Permalink
Commit triggered by a change on the main branch of helm-charts-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-pimenta-DME committed Jul 21, 2023
1 parent ea97791 commit 8b01b54
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/user-profile/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.1.6
version: 1.1.12

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: "v1.1"
appVersion: "v1.3"
4 changes: 3 additions & 1 deletion charts/user-profile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ The values specified in the ConfigMap will apply changes on the front page of th
colorButtonModify: "#38A79F"
useThreads: "true"
debugMode: "true"
pdpPort: "5567"
pdpUrl: "http://demoexample.gluu.org"
```
## Ports
Expand Down Expand Up @@ -135,4 +137,4 @@ For the volumeClaim:
volumeClaim:
name: um-user-profile-pvc
create: true
```
```
2 changes: 1 addition & 1 deletion charts/user-profile/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
nginx.ingress.kubernetes.io/ssl-redirect: "false"
spec:
tls:
- secretName: {{ printf "%s-user-profile-tls" .Values.context | quote }}
- secretName: "user-profile-tls-certificate"
hosts:
- {{ .Values.global.domain | quote }}
rules:
Expand Down
2 changes: 2 additions & 0 deletions charts/user-profile/templates/user-cm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ data:
UP_COLOR_BUTTON_MODIFY: {{ .Values.configMap.colorButtonModify | quote }}
UP_USE_THREADS: {{ .Values.configMap.useThreads | quote }}
UP_DEBUG_MODE: {{ .Values.configMap.debugMode | quote }}
UP_PDP_URL: http://{{ .Values.global.domain }}
UP_PDP_PORT: {{ .Values.configMap.pdpPort | quote }}
6 changes: 4 additions & 2 deletions charts/user-profile/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ configMap:
colorButtonModify: "#38A79F"
useThreads: "true"
debugMode: "true"
pdpPort: "5567"
pdpUrl: "http://demoexample.gluu.org"


image:
repository: eoepca/um-user-profile
repository: ghcr.io/eoepca/um-user-profile
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
Expand All @@ -67,4 +69,4 @@ requests:
memory: 70Mi
cpu: 3m

context: user
context: user

0 comments on commit 8b01b54

Please sign in to comment.