You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
903 B
28 lines
903 B
- name: Add argocd chart repo
|
|
kubernetes.core.helm_repository:
|
|
name: argo
|
|
repo_url: "https://argoproj.github.io/argo-helm"
|
|
|
|
- name: Deploy latest version of argocd chart inside argocd namespace with values
|
|
kubernetes.core.helm:
|
|
name: argocd
|
|
chart_ref: argo/argo-cd
|
|
release_namespace: argocd
|
|
create_namespace: yes
|
|
values:
|
|
server:
|
|
ingress:
|
|
annotations:
|
|
kubernetes.io/ingress.class: traefik
|
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
|
traefik.ingress.kubernetes.io/router.middlewares: default-redirect-https@kubernetescrd
|
|
enabled: true
|
|
hosts:
|
|
- host: argocd.skinnyscreens.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- secretName: argocd-tls
|
|
hosts:
|
|
- argocd.skinnyscreens.com
|
|
|