Skip to content

Commit

Permalink
add frontedn with tls
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Aug 28, 2024
1 parent f245edb commit 87f5225
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
11 changes: 10 additions & 1 deletion templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,18 @@ data:

{{ if .Values.services.frontend.enabled }}
[door-svc/frontend]
frontend.cell.name = Frontend
frontend.authn.protocol=http
frontend.net.port=3880
frontend.authz.anonymous-operations=FULL
frontend.authz.anonymous-operations=READONLY
{{- end }}

{{ if .Values.services.frontends.enabled }}
[door-svc/frontend]
frontend.cell.name = Frontend-S
frontend.authn.protocol=https
frontend.net.port=3881
frontend.authz.anonymous-operations=READONLY
{{- end }}

{{ if .Values.services.nfs.enabled }}
Expand Down
6 changes: 6 additions & 0 deletions templates/door-svc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,12 @@ spec:
targetPort: 3880
{{- end }}

{{ if .Values.services.frontends.enabled }}
- name: frontend-s-door
port: {{ $.Values.services.frontends.port }}
targetPort: 3881
{{- end }}

- name: cell-tunnel
port: {{ $.Values.cell.tunnel }}
targetPort: 11111
Expand Down
3 changes: 3 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ services:
enabled: true
port: 3880

frontends:
enabled: true
port: 3881

mover:
nfs: 32049
Expand Down

0 comments on commit 87f5225

Please sign in to comment.