Skip to content

Commit

Permalink
add config option for frontend door
Browse files Browse the repository at this point in the history
  • Loading branch information
kofemann committed Feb 15, 2024
1 parent 961e2f4 commit 9164c94
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ data:
gplazma.vorolemap.file=/opt/dcache/etc/grid-vorolemap
gplazma.htpasswd.file=/opt/dcache/etc/htpasswd
{{ if .Values.services.frontend.enabled }}
[door-svc/frontend]
frontend.authn.protocol=http
frontend.net.port=3880
frontend.authz.anonymous-operations=FULL
{{- end }}

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

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

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

frontend:
enabled: true
port: 3880


mover:
nfs: 32049
Expand Down

0 comments on commit 9164c94

Please sign in to comment.