...
1apiVersion: v1
2kind: Service
3metadata:
4 name: mock
5 labels:
6 app: mock
7spec:
8 ports:
9 - port: 99
10 protocol: TCP
11 targetPort: 9949
12 selector:
13 app: mock
14---
15apiVersion: v1
16kind: ReplicationController
17metadata:
18 name: mock
19spec:
20 replicas: 1
21 selector:
22 app: mock
23 template:
24 metadata:
25 labels:
26 app: mock
27 spec:
28 containers:
29 - name: mock-container
30 image: registry.k8s.io/pause:3.9
31 ports:
32 - containerPort: 9949
33 protocol: TCP
View as plain text