forked from Deuxfleurs/garage
Add admin port
This commit is contained in:
parent
fd38b387a8
commit
67102dd185
3 changed files with 9 additions and 0 deletions
|
@ -30,3 +30,6 @@ data:
|
||||||
bind_addr = "[::]:3902"
|
bind_addr = "[::]:3902"
|
||||||
root_domain = "{{ .Values.garage.s3.web.rootDomain }}"
|
root_domain = "{{ .Values.garage.s3.web.rootDomain }}"
|
||||||
index = "{{ .Values.garage.s3.web.index }}"
|
index = "{{ .Values.garage.s3.web.index }}"
|
||||||
|
|
||||||
|
[admin]
|
||||||
|
api_bind_addr = "[::]:3903"
|
||||||
|
|
|
@ -15,5 +15,9 @@ spec:
|
||||||
targetPort: 3902
|
targetPort: 3902
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
name: s3-web
|
name: s3-web
|
||||||
|
- port: 3904
|
||||||
|
targetPort: 3903
|
||||||
|
protocol: TCP
|
||||||
|
name: admin
|
||||||
selector:
|
selector:
|
||||||
{{- include "garage.selectorLabels" . | nindent 4 }}
|
{{- include "garage.selectorLabels" . | nindent 4 }}
|
||||||
|
|
|
@ -56,6 +56,8 @@ spec:
|
||||||
name: s3-api
|
name: s3-api
|
||||||
- containerPort: 3902
|
- containerPort: 3902
|
||||||
name: web-api
|
name: web-api
|
||||||
|
- containerPort: 3903
|
||||||
|
name: admin
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: meta
|
- name: meta
|
||||||
mountPath: /mnt/meta
|
mountPath: /mnt/meta
|
||||||
|
|
Loading…
Reference in a new issue