mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-07-10 14:19:31 +00:00
12 lines
159 B
YAML
12 lines
159 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: database-service
|
|
spec:
|
|
ports:
|
|
- port: 3306
|
|
protocol: TCP
|
|
selector:
|
|
app: database
|
|
type: NodePort
|