-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |