mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-07-12 15:19:17 +00:00
13 lines
193 B
YAML
13 lines
193 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: helloworld-service
|
|
spec:
|
|
ports:
|
|
- port: 80
|
|
targetPort: nodejs-port
|
|
protocol: TCP
|
|
selector:
|
|
app: helloworld
|
|
type: LoadBalancer
|