diff --git a/helm/dashboard/Chart.yaml b/helm/dashboard/Chart.yaml index 4ecd22a..b38308c 100644 --- a/helm/dashboard/Chart.yaml +++ b/helm/dashboard/Chart.yaml @@ -1,14 +1,10 @@ apiVersion: v2 -name: kubernetes-dashboard -description: A minimal wrapper chart to deploy the Kubernetes Dashboard into the i-dashboard namespace -type: application +name: my-dashboard +description: A Helm chart to deploy the Kubernetes Dashboard version: 0.1.0 -appVersion: "latest" -kubeVersion: ">=1.20.0" -keywords: - - kubernetes - - dashboard -home: "https://kubernetes.github.io/dashboard/" -sources: - - "https://github.com/kubernetes/dashboard" +appVersion: "3.0.0" # This can be the version of the dashboard you intend to deploy +dependencies: +- name: kubernetes-dashboard + version: "7.3.0" # Use a specific, stable version + repository: "https://kubernetes.github.io/dashboard/" diff --git a/helm/dashboard/values.yaml b/helm/dashboard/values.yaml index 4a9abd5..804457e 100644 --- a/helm/dashboard/values.yaml +++ b/helm/dashboard/values.yaml @@ -1,51 +1,10 @@ -namespace: i-dashboard - -image: - repository: kubernetesui/dashboard - tag: "v2.8.0" # reasonable default; change to desired version - pullPolicy: IfNotPresent - -service: - type: ClusterIP - port: 443 - targetPort: 8443 - annotations: {} - -ingress: - enabled: false - annotations: {} - hosts: [] - tls: [] - -rbac: - create: true - clusterAdmin: false - serviceAccountName: "" - -metrics: - enabled: false -extraArgs: [] - -enableInsecureLogin: true - -createClusterRoleBinding: false - -tls: - enabled: false - -resources: {} -nodeSelector: {} -tolerations: [] -affinity: {} - -# Service account configuration (empty => auto-generated name when create=true) -serviceAccount: - create: true - name: "" - -extraObjects: [] - -readinessProbe: {} -livenessProbe: {} - -fullnameOverride: kubernetes-dashboard +# Add any value overrides for the kubernetes-dashboard chart here. +# For example, to set a resource limit you could use: +# +resources: + limits: + cpu: 200m + memory: 200Mi + requests: + cpu: 100m + memory: 100Mi