From ff31d11b5688948b684c18970aab244db013f05f Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sun, 16 Apr 2023 14:41:05 +0000 Subject: [PATCH] Update 3 files - /ingress-nginx/Chart.yaml - /ingress-nginx/values.yaml - /argocd/templates/ingress-nginx.yaml --- argocd/templates/ingress-nginx.yaml | 21 ----- ingress-nginx/Chart.yaml | 11 --- ingress-nginx/values.yaml | 121 ---------------------------- 3 files changed, 153 deletions(-) delete mode 100644 argocd/templates/ingress-nginx.yaml delete mode 100644 ingress-nginx/Chart.yaml delete mode 100644 ingress-nginx/values.yaml diff --git a/argocd/templates/ingress-nginx.yaml b/argocd/templates/ingress-nginx.yaml deleted file mode 100644 index d8b46ab..0000000 --- a/argocd/templates/ingress-nginx.yaml +++ /dev/null @@ -1,21 +0,0 @@ -#apiVersion: argoproj.io/v1alpha1 -#kind: Application -#metadata: -# name: ingress-nginx -# namespace: argocd -#spec: -# project: default -# source: -# repoURL: https://gitlab.com/developerdurp/homelab.git -# targetRevision: main -# path: ingress-nginx -# destination: -# namespace: ingress-nginx -# name: in-cluster -# syncPolicy: -# automated: -# prune: true -# selfHeal: true -# syncOptions: -# - CreateNamespace=true -# \ No newline at end of file diff --git a/ingress-nginx/Chart.yaml b/ingress-nginx/Chart.yaml deleted file mode 100644 index d900d9c..0000000 --- a/ingress-nginx/Chart.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: v2 -name: nginx -description: A Helm chart for Kubernetes -type: application -version: 0.0.1 -appVersion: 0.0.1 - -dependencies: -- name: ingress-nginx - repository: https://kubernetes.github.io/ingress-nginx - version: 4.2.5 diff --git a/ingress-nginx/values.yaml b/ingress-nginx/values.yaml deleted file mode 100644 index f9fd6f0..0000000 --- a/ingress-nginx/values.yaml +++ /dev/null @@ -1,121 +0,0 @@ -ingress-nginx: - - controller: - name: controller - image: - chroot: false - registry: registry.k8s.io - image: ingress-nginx/controller - pullPolicy: Always - runAsUser: 101 - allowPrivilegeEscalation: true - - containerName: controller - containerPort: - http: 80 - https: 443 - - livenessProbe: - httpGet: - path: "/healthz" - port: 10254 - scheme: HTTP - initialDelaySeconds: 10 - periodSeconds: 10 - timeoutSeconds: 1 - successThreshold: 1 - failureThreshold: 5 - readinessProbe: - httpGet: - path: "/healthz" - port: 10254 - scheme: HTTP - initialDelaySeconds: 10 - periodSeconds: 10 - timeoutSeconds: 1 - successThreshold: 1 - failureThreshold: 3 - - healthCheckPath: "/healthz" - healthCheckHost: "" - podAnnotations: - prometheus.io/scrape: true - prometheus.io/port: 10254 - prometheus.io/scheme: http - - replicaCount: 3 - - minAvailable: 3 - - metrics: - enabled: true - serviceMonitor: - enabled: true - namespace: kube-prometheus-stack - additionalLabels: - release: kube-prometheus - - resources: - limits: - memory: 256Mi - requests: - cpu: 200m - memory: 256Mi - - service: - enabled: true - appProtocol: true - annotations: {} - labels: {} - externalIPs: [] - - loadBalancerIP: "" - loadBalancerSourceRanges: [] - - enableHttp: true - enableHttps: true - - ports: - http: 80 - https: 443 - - targetPorts: - http: http - https: https - - type: LoadBalancer - - external: - enabled: true - externalTrafficPolicy: "Local" - - patch: - enabled: true - image: - registry: registry.k8s.io - image: ingress-nginx/kube-webhook-certgen - pullPolicy: Always - runAsUser: 2000 - fsGroup: 2000 - - lifecycle: - preStop: - exec: - command: - - /wait-shutdown - - priorityClassName: "" - - revisionHistoryLimit: 1 - - rbac: - create: true - scope: false - - serviceAccount: - create: true - name: "" - automountServiceAccountToken: true - annotations: {} - - \ No newline at end of file