mirror of https://github.com/k3s-io/k3s
33 lines
451 B
YAML
33 lines
451 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: echoheadersx
|
|
labels:
|
|
app: echoheaders
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8080
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: echoheaders
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: echoheadersy
|
|
labels:
|
|
app: echoheaders
|
|
spec:
|
|
type: NodePort
|
|
ports:
|
|
- port: 80
|
|
targetPort: 8080
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: echoheaders
|
|
|