k8s/manifests/02-services/hw-service.yaml

14 lines
239 B
YAML
Raw Normal View History

2023-06-19 23:57:55 +10:00
apiVersion: v1
kind: Service
metadata:
name: hw-service
namespace: vdk2ch
spec:
2023-06-20 00:03:12 +10:00
type: NodePort
2023-06-19 23:57:55 +10:00
selector:
app.kubernetes.io/name: helloworld
ports:
- protocol: TCP
port: 80
2023-06-20 00:03:12 +10:00
targetPort: 80
2023-06-20 00:04:29 +10:00
nodePort: 30001