From 4f5c0522e779556784f25d57b9da830492260ba0 Mon Sep 17 00:00:00 2001 From: homejacob Date: Tue, 30 Sep 2025 14:32:07 +0200 Subject: [PATCH] traefik --- helm/dashboard/service-account.yaml | 18 ---------- helm/rancher/Chart.yaml | 17 ---------- helm/rancher/values.yaml | 51 ----------------------------- 3 files changed, 86 deletions(-) delete mode 100644 helm/dashboard/service-account.yaml delete mode 100644 helm/rancher/Chart.yaml delete mode 100644 helm/rancher/values.yaml diff --git a/helm/dashboard/service-account.yaml b/helm/dashboard/service-account.yaml deleted file mode 100644 index 7ba014d..0000000 --- a/helm/dashboard/service-account.yaml +++ /dev/null @@ -1,18 +0,0 @@ -apiVersion: v1 -kind: ServiceAccount -metadata: - name: admin-user - namespace: i-dashboard ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: ClusterRoleBinding -metadata: - name: admin-user -roleRef: - apiGroup: rbac.authorization.k8s.io - kind: ClusterRole - name: cluster-admin -subjects: -- kind: ServiceAccount - name: admin-user - namespace: i-dashboard diff --git a/helm/rancher/Chart.yaml b/helm/rancher/Chart.yaml deleted file mode 100644 index 0bd7df9..0000000 --- a/helm/rancher/Chart.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v2 -name: rancher -description: A Helm chart for deploying Rancher -type: application -version: 2.6.0 -appVersion: "2.6.0" -icon: https://rancher.com/assets/img/rancher-logo.svg -keywords: - - rancher - - kubernetes - - management - - container -maintainers: - - name: HomeJacob - email: homejacob@darkstars.me -sources: - - https://github.com/rancher/rancher diff --git a/helm/rancher/values.yaml b/helm/rancher/values.yaml deleted file mode 100644 index c2764fc..0000000 --- a/helm/rancher/values.yaml +++ /dev/null @@ -1,51 +0,0 @@ -replicaCount: 1 - -image: - repository: rancher/rancher - tag: "v2.6.0" - pullPolicy: IfNotPresent - -service: - enabled: true - type: LoadBalancer - port: 80 - targetPort: 80 - annotations: {} - -ingress: - enabled: true - hosts: - - host: rancher.darkstars.local - paths: - - / - tls: - - secretName: rancher-tls - hosts: - - rancher.darkstars.local - -resources: - limits: - cpu: 100m - memory: 512Mi - requests: - cpu: 100m - memory: 512Mi - -nodeSelector: {} - -tolerations: [] - -affinity: {} - -extraEnv: - - name: CATTLE_BOOTSTRAP_PASSWORD - valueFrom: - secretKeyRef: - name: rancher-bootstrap-secret - key: password - -persistence: - enabled: true - storageClass: "standard" - accessMode: ReadWriteOnce - size: 10Gi