mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-02-14 17:49:56 +00:00
14 lines
208 B
YAML
14 lines
208 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: wordpress-service
|
|
spec:
|
|
ports:
|
|
- port: 31001
|
|
nodePort: 31001
|
|
targetPort: http-port
|
|
protocol: TCP
|
|
selector:
|
|
app: wordpress
|
|
type: NodePort
|