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 Oct 11, 2023
1 parent afcacb5 commit 291667d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/uma-user-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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.2.4
version: 1.3.5

# 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.
# It is recommended to use it with quotes.
appVersion: "v1.2.2"
appVersion: "v1.2.2"
17 changes: 16 additions & 1 deletion charts/uma-user-agent/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,21 @@ metadata:
proxy_set_header X-Original-URI $request_uri;
proxy_set_header X-Original-Method $request_method;
}
location /keycloak {
proxy_pass https://identity.gatekeeper.develop.eoepca.org/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-Host $host:80;
proxy_set_header X-Forwarded-Port 80;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_connect_timeout 1;
proxy_read_timeout 30;
proxy_send_timeout 30;
proxy_http_version 1.1;
}
spec:
{{- if and .Values.nginxIntegration.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }}
ingressClassName: {{ .Values.nginxIntegration.className }}
Expand Down Expand Up @@ -115,4 +130,4 @@ spec:
- {{ printf "%s.%s" (tpl .host $) $domain | quote }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}

0 comments on commit 291667d

Please sign in to comment.