...
1apiVersion: v1
2kind: Service
3metadata:
4 name: download
5 labels:
6 app: download
7 domain: prod
8 component: infra
9spec:
10 ports:
11 - port: 7080
12 protocol: TCP
13 targetPort: 7080
14 name: client
15 selector:
16 app: download
17 domain: prod
18---
19apiVersion: apps/v1
20kind: Deployment
21metadata:
22 name: download
23spec:
24 replicas: 1
25 template:
26 metadata:
27 labels:
28 app: download
29 domain: prod
30 component: infra
31 spec:
32 containers:
33 - image: gcr.io/myproj/download:v0.0.2
34 name: download
35 ports:
36 - containerPort: 7080
View as plain text