mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
Signed-off-by: Codey Jenkins <FourFifthsCode@users.noreply.github.com> Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
25 lines
506 B
YAML
25 lines
506 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: argocd-ui
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: argocd-ui
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: argocd-ui
|
|
spec:
|
|
containers:
|
|
- name: argocd-ui
|
|
image: argocd-ui
|
|
env:
|
|
- name: ARGOCD_API_URL
|
|
value: https://argocd-server
|
|
- name: ARGOCD_E2E_YARN_HOST
|
|
value: "0.0.0.0"
|
|
ports:
|
|
- containerPort: 4000
|
|
name: http
|