diff --git a/k8s/service.yml b/k8s/service.yml new file mode 100644 index 0000000..7760ec2 --- /dev/null +++ b/k8s/service.yml @@ -0,0 +1,17 @@ +apiVersion: v1 +kind: Service +metadata: + name: dolphinsite + namespace: aria-projects + labels: + app: dolphinsite + managed-by: aria +spec: + type: NodePort + selector: + app: dolphinsite + ports: + - name: http + port: 80 + targetPort: 80 + protocol: TCP