Commit 783e59c2 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Expose WebUI in fixed NodePort

parent b9fe45e6
Loading
Loading
Loading
Loading
+16 −15
Original line number Diff line number Diff line
@@ -54,19 +54,20 @@ spec:
    port: 8004
    targetPort: 8004
---
# apiVersion: v1
# kind: Service
# metadata:
#   name: webuiservice-public
#   labels:
#     app: webuiservice
# spec:
#   type: NodePort
#   selector:
#     app: webuiservice
#   ports:
#   - name: http
#     protocol: TCP
#     port: 8004
#     targetPort: 8004
apiVersion: v1
kind: Service
metadata:
  name: webuiservice-public
  labels:
    app: webuiservice
spec:
  type: NodePort
  selector:
    app: webuiservice
  ports:
  - name: http
    protocol: TCP
    port: 8004
    targetPort: 8004
    nodePort: 30800
---