19 lines
309 B
YAML
19 lines
309 B
YAML
|
---
|
||
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: quobyte-webui
|
||
|
{{- if .Values.quobyte.lbinternal }}
|
||
|
annotations:
|
||
|
cloud.google.com/load-balancer-type: "Internal"
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
type: LoadBalancer
|
||
|
selector:
|
||
|
app: quobyte-web
|
||
|
ports:
|
||
|
- protocol: TCP
|
||
|
port: 8080
|
||
|
targetPort: 8080
|
||
|
|