From eeef39026c5d032fbc1ebef4c5fd6c4e86f5e8bc Mon Sep 17 00:00:00 2001 From: titver968 Date: Tue, 27 May 2025 14:54:48 +0200 Subject: [PATCH] =?UTF-8?q?install=20skript=20gel=C3=B6scht,=20skipCRD=20e?= =?UTF-8?q?ingetragen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../install-kube-prometheus-crds.yaml | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 argocd/apps/kube-prometheus/install-kube-prometheus-crds.yaml diff --git a/argocd/apps/kube-prometheus/install-kube-prometheus-crds.yaml b/argocd/apps/kube-prometheus/install-kube-prometheus-crds.yaml deleted file mode 100644 index 1beb99f..0000000 --- a/argocd/apps/kube-prometheus/install-kube-prometheus-crds.yaml +++ /dev/null @@ -1,26 +0,0 @@ -apiVersion: batch/v1 -kind: Job -metadata: - name: install-kube-prometheus-crds - namespace: monitoring -spec: - template: - spec: - containers: - - name: helm - image: alpine/helm:3.14.0 - command: - - /bin/sh - - -c - - | - helm repo add prometheus-community https://prometheus-community.github.io/helm-charts - helm repo update - helm pull prometheus-community/kube-prometheus-stack --version 72.6.3 - tar -xzf kube-prometheus-stack-72.6.3.tgz - kubectl apply -f kube-prometheus-stack/crds - volumeMounts: - - name: kubeconfig - mountPath: /root/.kube - restartPolicy: Never - serviceAccountName: default - backoffLimit: 1