Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

chore(deps): update dependency gardener/dashboard to v1.63.0 (latest-1) #441

Open
wants to merge 1 commit into
base: latest-1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/gardener-dashboard/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# SPDX-License-Identifier: Apache-2.0

apiVersion: v1
description: A Helm chart for Gardener dashboard
description: A Helm chart to deploy the Gardener dashboard
name: gardener-dashboard
version: 1.61.3
version: 1.63.0
8 changes: 8 additions & 0 deletions charts/gardener-dashboard/charts/application/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and Gardener contributors
#
# SPDX-License-Identifier: Apache-2.0

apiVersion: v1
description: A Helm chart to deploy the Gardener dashboard application related components
name: application
version: 1.63.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and Gardener contributors
#
# SPDX-License-Identifier: Apache-2.0

apiVersion: {{ include "rbacversion" . }}
kind: ClusterRole
metadata:
name: gardener.cloud:system:dashboard
labels:
app: gardener-dashboard
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
rules:
- apiGroups:
- authentication.k8s.io
resources:
- tokenreviews
verbs:
- create
- apiGroups:
- core.gardener.cloud
resources:
- quotas
verbs:
- list
- watch
- apiGroups:
- core.gardener.cloud
resources:
- projects
verbs:
- list
- watch
- apiGroups:
- core.gardener.cloud
resources:
- shoots
verbs:
- list
- watch
- apiGroups:
- apiregistration.k8s.io
resources:
- apiservices
verbs:
- get
- apiGroups:
- core.gardener.cloud
resources:
- controllerregistrations
verbs:
- list
- watch
- apiGroups:
- ""
resources:
- configmaps
verbs:
- get
resourceNames:
- cluster-identity
# required for terminal bootstrapping and gardener/dashboard#943
- apiGroups:
- ""
resources:
- secrets
verbs:
- get
# required for terminal bootstrapping
- apiGroups:
- core.gardener.cloud
resources:
- shoots
verbs:
- get
- apiGroups:
- core.gardener.cloud
resources:
- shoots/adminkubeconfig
verbs:
- create
- apiGroups:
- seedmanagement.gardener.cloud
resources:
- managedseeds
verbs:
- get
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and Gardener contributors
#
# SPDX-License-Identifier: Apache-2.0

apiVersion: {{ include "rbacversion" . }}
kind: ClusterRoleBinding
metadata:
name: gardener.cloud:system:dashboard
labels:
app: gardener-dashboard
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: gardener.cloud:system:dashboard
subjects:
{{- if and .Values.global.virtualGarden.enabled .Values.global.virtualGarden.userName }}
- apiGroup: rbac.authorization.k8s.io
kind: User
name: {{ .Values.global.virtualGarden.userName }}
{{- else }}
- kind: ServiceAccount
name: {{ required ".Values.global.serviceAccountName is required" .Values.global.serviceAccountName }}
namespace: {{ .Release.Namespace }}
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
#
# SPDX-License-Identifier: Apache-2.0

{{- if not .Values.kubeconfig }}
{{- if or ( not .Values.global.virtualGarden.enabled ) ( not .Values.global.virtualGarden.userName ) }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: gardener-dashboard
name: {{ required ".Values.global.serviceAccountName is required" .Values.global.serviceAccountName }}
namespace: {{ .Release.Namespace }}
labels:
app: gardener-dashboard
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
{{- end }}
{{- end }}
Loading