kubernetes: deployment pod table (#2618)

* deployment pod table

* prettier manifest file

* pr feedback
This commit is contained in:
Matthew Clarke
2020-09-25 16:25:25 +01:00
committed by GitHub
parent bbf247e822
commit eb4c704674
8 changed files with 4825 additions and 26 deletions
@@ -8,7 +8,7 @@ spec:
selector:
matchLabels:
app: dice-roller
replicas: 2
replicas: 10
template:
metadata:
labels:
@@ -21,6 +21,38 @@ spec:
ports:
- containerPort: 80
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: dice-roller-canary
labels:
'backstage.io/kubernetes-id': dice-roller
spec:
selector:
matchLabels:
app: dice-roller-canary
replicas: 2
template:
metadata:
labels:
app: dice-roller-canary
'backstage.io/kubernetes-id': dice-roller
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
- name: side-car
image: nginx:1.14.2
ports:
- containerPort: 81
- name: other-side-car
image: nginx:1.14.2
ports:
- containerPort: 82
---
apiVersion: v1
kind: ConfigMap