Skip to content

Commit

Permalink
Argocd
Browse files Browse the repository at this point in the history
  • Loading branch information
olevitt committed May 10, 2023
1 parent 0c36a64 commit b5dbb2f
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
9 changes: 9 additions & 0 deletions kubernetes/argocd/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Install argocd

https://github.com/argoproj/argo-helm/tree/main/charts/argo-cd

```
helm repo add argo https://argoproj.github.io/argo-helm
helm template argocd argo/argo-cd -f values.yaml > toto.yaml
helm install argocd argo/argo-cd -f values.yaml
```
40 changes: 40 additions & 0 deletions kubernetes/argocd/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
server:
ingress:
# -- Enable an ingress resource for the Argo CD server
enabled: true
# -- Additional ingress annotations
annotations: {}
# -- Additional ingress labels
labels: {}
# -- Defines which ingress controller will implement the resource
ingressClassName: "nginx"

# -- List of ingress hosts
## Argo Ingress.
## Hostnames must be provided if Ingress is enabled.
## Secrets must be manually created in the namespace
hosts:
- argocd.intech.insee.io

# -- List of ingress paths
paths:
- /
# -- Ingress path type. One of `Exact`, `Prefix` or `ImplementationSpecific`
pathType: Prefix
# -- Additional ingress paths
extraPaths:
[]
# - path: /*
# pathType: Prefix
# backend:
# service:
# name: ssl-redirect
# port:
# name: use-annotation

# -- Ingress TLS configuration
tls:
[]
# - secretName: your-certificate-name
# hosts:
# - argocd.example.com

0 comments on commit b5dbb2f

Please sign in to comment.