14 lines
201 B
YAML
14 lines
201 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-srv
|
|
labels:
|
|
app: &app nginx
|
|
spec:
|
|
selector:
|
|
app: *app
|
|
ports:
|
|
- protocol: TCP
|
|
port: 80
|
|
targetPort: 80
|
|
name: http
|