This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency gardener/dashboard to v1.63.0
- Loading branch information
23t-renovate
committed
Nov 15, 2022
1 parent
de791d7
commit e7ada16
Showing
29 changed files
with
1,751 additions
and
798 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
File renamed without changes.
88 changes: 88 additions & 0 deletions
88
charts/gardener-dashboard/charts/application/templates/clusterrole.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
27 changes: 27 additions & 0 deletions
27
charts/gardener-dashboard/charts/application/templates/clusterrolebinding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.