set up repo with first app
This commit is contained in:
parent
2d416d2482
commit
a2f3587ce0
10 changed files with 276 additions and 0 deletions
20
cluster-apps-of-apps/guestbook/guestbook.yaml
Normal file
20
cluster-apps-of-apps/guestbook/guestbook.yaml
Normal file
|
@ -0,0 +1,20 @@
|
|||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: guestbook-ui
|
||||
spec:
|
||||
replicas: 1
|
||||
revisionHistoryLimit: 3
|
||||
selector:
|
||||
matchLabels:
|
||||
app: guestbook-ui
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: guestbook-ui
|
||||
spec:
|
||||
containers:
|
||||
- image: gcr.io/heptio-images/ks-guestbook-demo:0.2
|
||||
name: guestbook-ui
|
||||
ports:
|
||||
- containerPort: 80
|
Loading…
Add table
Add a link
Reference in a new issue