36 lines
808 B
YAML
36 lines
808 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: cilium
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "-999999"
|
|
spec:
|
|
project: system
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
destination:
|
|
server: "https://kubernetes.default.svc"
|
|
namespace: kube-system
|
|
source:
|
|
chart: cilium
|
|
repoURL: https://helm.cilium.io/
|
|
targetRevision: 1.16.4
|
|
helm:
|
|
releaseName: cilium
|
|
valuesObject:
|
|
operator:
|
|
replicas: 1
|
|
|
|
ipam:
|
|
operator:
|
|
clusterPoolIPv4PodCIDRList: "10.42.0.0/16"
|
|
|
|
kubeProxyReplacement: true
|
|
k8sServiceHost: "172.16.1.1" # internal IP (Hetzner Cloud Network)
|
|
k8sServicePort: "6443"
|
|
|
|
# Disable Envoy proxy
|
|
l7Proxy: false
|