Mercurial > code > home > repos > href
annotate deploy.yaml @ 33:b82432594778
skaffold config and other updates
author | drewp@bigasterisk.com |
---|---|
date | Sat, 21 Aug 2021 14:24:57 -0700 |
parents | |
children |
rev | line source |
---|---|
33 | 1 apiVersion: apps/v1 |
2 kind: Deployment | |
3 metadata: | |
4 name: href | |
5 spec: | |
6 replicas: 1 | |
7 selector: | |
8 matchLabels: | |
9 app: href | |
10 template: | |
11 metadata: | |
12 labels: | |
13 app: href | |
14 spec: | |
15 containers: | |
16 - name: href | |
17 image: bang5:5000/href_image | |
18 ports: | |
19 - containerPort: 10002 | |
20 --- | |
21 apiVersion: v1 | |
22 kind: Service | |
23 metadata: | |
24 name: href | |
25 spec: | |
26 ports: | |
27 - {port: 80, targetPort: 10002} | |
28 selector: | |
29 app: href |