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

Commit 93aac21

Browse files
author
23t-renovate
committed
chore(deps): update dependency gardener/dashboard to v1.63.0
1 parent de791d7 commit 93aac21

29 files changed

Lines changed: 1751 additions & 798 deletions

charts/gardener-dashboard/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
apiVersion: v1
6-
description: A Helm chart for Gardener dashboard
6+
description: A Helm chart to deploy the Gardener dashboard
77
name: gardener-dashboard
8-
version: 1.61.3
8+
version: 1.63.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and Gardener contributors
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
apiVersion: v1
6+
description: A Helm chart to deploy the Gardener dashboard application related components
7+
name: application
8+
version: 1.63.0

charts/gardener-dashboard/templates/_versions.tpl renamed to charts/gardener-dashboard/charts/application/templates/_versions.tpl

File renamed without changes.
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and Gardener contributors
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
apiVersion: {{ include "rbacversion" . }}
6+
kind: ClusterRole
7+
metadata:
8+
name: gardener.cloud:system:dashboard
9+
labels:
10+
app: gardener-dashboard
11+
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
12+
release: "{{ .Release.Name }}"
13+
heritage: "{{ .Release.Service }}"
14+
rules:
15+
- apiGroups:
16+
- authentication.k8s.io
17+
resources:
18+
- tokenreviews
19+
verbs:
20+
- create
21+
- apiGroups:
22+
- core.gardener.cloud
23+
resources:
24+
- quotas
25+
verbs:
26+
- list
27+
- watch
28+
- apiGroups:
29+
- core.gardener.cloud
30+
resources:
31+
- projects
32+
verbs:
33+
- list
34+
- watch
35+
- apiGroups:
36+
- core.gardener.cloud
37+
resources:
38+
- shoots
39+
verbs:
40+
- list
41+
- watch
42+
- apiGroups:
43+
- apiregistration.k8s.io
44+
resources:
45+
- apiservices
46+
verbs:
47+
- get
48+
- apiGroups:
49+
- core.gardener.cloud
50+
resources:
51+
- controllerregistrations
52+
verbs:
53+
- list
54+
- watch
55+
- apiGroups:
56+
- ""
57+
resources:
58+
- configmaps
59+
verbs:
60+
- get
61+
resourceNames:
62+
- cluster-identity
63+
# required for terminal bootstrapping and gardener/dashboard#943
64+
- apiGroups:
65+
- ""
66+
resources:
67+
- secrets
68+
verbs:
69+
- get
70+
# required for terminal bootstrapping
71+
- apiGroups:
72+
- core.gardener.cloud
73+
resources:
74+
- shoots
75+
verbs:
76+
- get
77+
- apiGroups:
78+
- core.gardener.cloud
79+
resources:
80+
- shoots/adminkubeconfig
81+
verbs:
82+
- create
83+
- apiGroups:
84+
- seedmanagement.gardener.cloud
85+
resources:
86+
- managedseeds
87+
verbs:
88+
- get
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-FileCopyrightText: 2022 SAP SE or an SAP affiliate company and Gardener contributors
2+
#
3+
# SPDX-License-Identifier: Apache-2.0
4+
5+
apiVersion: {{ include "rbacversion" . }}
6+
kind: ClusterRoleBinding
7+
metadata:
8+
name: gardener.cloud:system:dashboard
9+
labels:
10+
app: gardener-dashboard
11+
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
12+
release: "{{ .Release.Name }}"
13+
heritage: "{{ .Release.Service }}"
14+
roleRef:
15+
apiGroup: rbac.authorization.k8s.io
16+
kind: ClusterRole
17+
name: gardener.cloud:system:dashboard
18+
subjects:
19+
{{- if and .Values.global.virtualGarden.enabled .Values.global.virtualGarden.userName }}
20+
- apiGroup: rbac.authorization.k8s.io
21+
kind: User
22+
name: {{ .Values.global.virtualGarden.userName }}
23+
{{- else }}
24+
- kind: ServiceAccount
25+
name: {{ required ".Values.global.serviceAccountName is required" .Values.global.serviceAccountName }}
26+
namespace: {{ .Release.Namespace }}
27+
{{- end }}

charts/gardener-dashboard/templates/serviceaccount.yaml renamed to charts/gardener-dashboard/charts/application/templates/serviceaccount.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

5-
{{- if not .Values.kubeconfig }}
5+
{{- if or ( not .Values.global.virtualGarden.enabled ) ( not .Values.global.virtualGarden.userName ) }}
66
apiVersion: v1
77
kind: ServiceAccount
88
metadata:
9-
name: gardener-dashboard
9+
name: {{ required ".Values.global.serviceAccountName is required" .Values.global.serviceAccountName }}
1010
namespace: {{ .Release.Namespace }}
1111
labels:
1212
app: gardener-dashboard
1313
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
1414
release: "{{ .Release.Name }}"
1515
heritage: "{{ .Release.Service }}"
16-
{{- end }}
16+
{{- end }}

0 commit comments

Comments
 (0)