mirror of
https://github.com/argoproj/argocd-example-apps.git
synced 2024-10-31 07:29:34 +01:00
21 lines
389 B
YAML
21 lines
389 B
YAML
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
|