this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(ingress-nginx): move to plain Application

+33 -13
-7
apps/ingress-nginx/Chart.yaml
··· 1 - apiVersion: v2 2 - name: ingress-nginx 3 - version: 0.0.0 4 - dependencies: 5 - - name: ingress-nginx 6 - version: 4.11.2 7 - repository: https://kubernetes.github.io/ingress-nginx
-6
apps/ingress-nginx/values.yaml
··· 1 - ingress-nginx: 2 - controller: 3 - podLabels: 4 - "istio.io/dataplane-mode": "ambient" 5 - admissionWebhooks: 6 - timeoutSeconds: 30
+3
cluster/roles/bootstrap/tasks/main.yml
··· 55 55 revision: "{{ gitops_revision }}" 56 56 directories: 57 57 - path: apps/* 58 + syncPolicy: 59 + preserveResourcesOnDeletion: true 58 60 template: 59 61 metadata: 60 62 name: "{{ '{{path.basename}}' }}" ··· 75 77 - CreateNamespace=true 76 78 - ApplyOutOfSyncOnly=true 77 79 - ServerSideApply=true 80 + preserveResourcesOnDeletion: true
+30
system/ingress-nginx.yaml
··· 1 + apiVersion: argoproj.io/v1alpha1 2 + kind: Application 3 + metadata: 4 + finalizers: 5 + - resources-finalizer.argocd.argoproj.io 6 + name: ingress-nginx 7 + spec: 8 + destination: 9 + name: in-cluster 10 + namespace: ingress-nginx 11 + project: default 12 + syncPolicy: 13 + automated: 14 + prune: true 15 + selfHeal: true 16 + syncOptions: 17 + - CreateNamespace=true 18 + - ApplyOutOfSyncOnly=true 19 + - ServerSideApply=true 20 + source: 21 + repoURL: https://kubernetes.github.io/ingress-nginx 22 + chart: ingress-nginx 23 + targetRevision: 4.11.2 24 + helm: 25 + valuesObject: 26 + controller: 27 + podLabels: 28 + "istio.io/dataplane-mode": "ambient" 29 + admissionWebhooks: 30 + timeoutSeconds: 30