mirror of
https://github.com/gwg313/homelab-gitops.git
synced 2026-06-05 20:50:58 +00:00
43 lines
1 KiB
YAML
43 lines
1 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: istio-istiod
|
|
namespace: argocd
|
|
annotations:
|
|
argocd.argoproj.io/sync-wave: "1"
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://istio-release.storage.googleapis.com/charts
|
|
chart: istiod
|
|
targetRevision: 1.26.0
|
|
helm:
|
|
values: |
|
|
cni:
|
|
enabled: true
|
|
provider: default
|
|
|
|
sidecarInjectorWebhook:
|
|
disableInitContainers: true
|
|
|
|
pilot:
|
|
autoscaleEnabled: false
|
|
replicaCount: 2
|
|
resources:
|
|
requests:
|
|
cpu: "500m"
|
|
memory: "512Mi"
|
|
limits:
|
|
cpu: "1000m"
|
|
memory: "1Gi"
|
|
|
|
podDisruptionBudget:
|
|
enabled: true
|
|
minAvailable: 1
|
|
destination:
|
|
server: https://kubernetes.default.svc
|
|
namespace: istio-system
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|