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