mirror of
https://github.com/wahyd4/home-argocd.git
synced 2026-08-09 05:06:20 +10:00
40 lines
1.0 KiB
YAML
40 lines
1.0 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: headlamp
|
|
namespace: argocd
|
|
spec:
|
|
project: default
|
|
source:
|
|
chart: headlamp
|
|
repoURL: https://headlamp-k8s.github.io/
|
|
path: headlamp
|
|
targetRevision: 0.27.0
|
|
helm:
|
|
releaseName: headlamp
|
|
# https://github.com/headlamp-k8s/headlamp/blob/main/charts/headlamp/values.yaml
|
|
values: |
|
|
ingress:
|
|
enabled: true
|
|
ingressClassName: nginx
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
kubernetes.io/tls-acme: "true"
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
|
nginx.ingress.kubernetes.io/proxy-body-size: 50m
|
|
hosts:
|
|
- host: k8s.junv.cc
|
|
paths:
|
|
- path: /
|
|
tls:
|
|
- secretName: headlamp-tls
|
|
hosts:
|
|
- k8s.junv.cc
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: default
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|