mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
Signed-off-by: nitishfy <justnitish06@gmail.com> Signed-off-by: Nitish Kumar <justnitish06@gmail.com>
35 lines
904 B
YAML
35 lines
904 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
argocd.argoproj.io/tracking-id: 'guestbook:apps/Deployment:default/kustomize-guestbook-ui'
|
|
iksm-version: '1.0'
|
|
name: kustomize-guestbook-ui
|
|
namespace: default
|
|
spec:
|
|
replicas: 1
|
|
revisionHistoryLimit: 3
|
|
selector:
|
|
matchLabels:
|
|
app: guestbook-ui
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: guestbook-ui
|
|
spec:
|
|
containers:
|
|
- env:
|
|
- name: SOME_OTHER_ENV_VAR
|
|
value: some_other_value
|
|
- name: YET_ANOTHER_ENV_VAR
|
|
value: yet_another_value
|
|
- name: SOME_ENV_VAR
|
|
value: different_value!
|
|
image: 'quay.io/argoprojlabs/argocd-e2e-container:0.1'
|
|
name: guestbook-ui
|
|
ports:
|
|
- containerPort: 80
|
|
resources:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 100Mi |