Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/akeyless-gateway/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ app.kubernetes.io/instance: {{ .Release.Name }}
- name: UNIFIED_GATEWAY
value: "true"
- name: GATEWAY_URL
value: "http://{{ include "akeyless-gateway.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local:8000"
value: "http://{{ include "akeyless-gateway.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local:{{.Values.gateway.service.port}}"
- name: INTERNAL_GATEWAY_API
value: "http://{{ include "akeyless-gateway.fullname" . }}-internal.{{ .Release.Namespace }}.svc.cluster.local:8080"
{{- end -}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
targetPort: ssh
protocol: TCP
name: ssh
- port: 8000
- port: {{ .Values.gateway.service.port }}
targetPort: gateway
protocol: TCP
name: gateway
Expand Down
2 changes: 1 addition & 1 deletion charts/akeyless-gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ spec:
{{- end }}
ports:
- name: gateway
containerPort: {{ .Values.gateway.service.port }}
containerPort: 8000
- name: internal-gw-api
containerPort: 8080
{{- if .Values.gateway.service.kmip.enabled }}
Expand Down
Loading