Skip to content

Commit c16b72a

Browse files
committed
add svc to dashboard
1 parent bdc7a92 commit c16b72a

File tree

10 files changed

+55
-10
lines changed

10 files changed

+55
-10
lines changed

packages/apps/clickhouse/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.6.0
19+
version: 0.6.1
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to

packages/apps/clickhouse/templates/dashboard-resourcemap.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rules:
88
resources:
99
- services
1010
resourceNames:
11-
- chi-clickhouse-test-clickhouse-0-0
11+
- chendpoint-{{ .Release.Name }}
1212
verbs: ["get", "list", "watch"]
1313
- apiGroups:
1414
- ""

packages/apps/kafka/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.3.0
19+
version: 0.3.1
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: Role
3+
metadata:
4+
name: {{ .Release.Name }}-dashboard-resources
5+
rules:
6+
- apiGroups:
7+
- ""
8+
resources:
9+
- services
10+
resourceNames:
11+
- {{ .Release.Name }}-kafka-bootstrap
12+
verbs: ["get", "list", "watch"]
13+
- apiGroups:
14+
- ""
15+
resources:
16+
- secrets
17+
resourceNames:
18+
- {{ .Release.Name }}-clients-ca
19+
verbs: ["get", "list", "watch"]

packages/apps/nats/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.3.0
19+
version: 0.3.1
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to

packages/apps/nats/templates/nats.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
nats:
4141
fullnameOverride: {{ .Release.Name }}
4242
config:
43-
{{- if gt (len .Values.passwords) 0 }}
43+
{{- if gt (len $passwords) 0 }}
4444
merge:
4545
accounts:
4646
A:

packages/apps/nats/templates/resourcemap.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ kind: Role
33
metadata:
44
name: {{ .Release.Name }}-dashboard-resources
55
rules:
6+
- apiGroups:
7+
- ""
8+
resources:
9+
- services
10+
resourceNames:
11+
- {{ .Release.Name }}
12+
verbs: ["get", "list", "watch"]
613
- apiGroups:
714
- ""
815
resources:

packages/apps/redis/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.3.0
19+
version: 0.3.1
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: rbac.authorization.k8s.io/v1
2+
kind: Role
3+
metadata:
4+
name: {{ .Release.Name }}-dashboard-resources
5+
rules:
6+
- apiGroups:
7+
- ""
8+
resources:
9+
- services
10+
resourceNames:
11+
- rfs-{{ .Release.Name }}
12+
- rfrm-{{ .Release.Name }}
13+
- rfrs-{{ .Release.Name }}
14+
- "{{ .Release.Name }}-external-lb"
15+
verbs: ["get", "list", "watch"]

packages/apps/versions_map

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ clickhouse 0.2.1 5ca8823
55
clickhouse 0.3.0 b00621e
66
clickhouse 0.4.0 320fc32
77
clickhouse 0.5.0 2a4768a5
8-
clickhouse 0.6.0 HEAD
8+
clickhouse 0.6.0 18bbdb67
9+
clickhouse 0.6.1 HEAD
910
ferretdb 0.1.0 4ffa8615
1011
ferretdb 0.1.1 5ca8823
1112
ferretdb 0.2.0 adaf603
@@ -21,7 +22,8 @@ kafka 0.2.0 a2cc83d
2122
kafka 0.2.1 3ac17018
2223
kafka 0.2.2 d0758692
2324
kafka 0.2.3 5ca8823
24-
kafka 0.3.0 HEAD
25+
kafka 0.3.0 c07c4bbd
26+
kafka 0.3.1 HEAD
2527
kubernetes 0.1.0 f642698
2628
kubernetes 0.2.0 7cd7de73
2729
kubernetes 0.3.0 7caccec1
@@ -49,7 +51,8 @@ mysql 0.5.1 fab5940b
4951
mysql 0.5.2 HEAD
5052
nats 0.1.0 5ca8823
5153
nats 0.2.0 c07c4bbd
52-
nats 0.3.0 HEAD
54+
nats 0.3.0 78366f19
55+
nats 0.3.1 HEAD
5356
postgres 0.1.0 f642698
5457
postgres 0.2.0 7cd7de73
5558
postgres 0.2.1 4a97e297
@@ -70,7 +73,8 @@ rabbitmq 0.4.2 00b2834e
7073
rabbitmq 0.4.3 HEAD
7174
redis 0.1.1 f642698
7275
redis 0.2.0 5ca8823
73-
redis 0.3.0 HEAD
76+
redis 0.3.0 c07c4bbd
77+
redis 0.3.1 HEAD
7478
tcp-balancer 0.1.0 f642698
7579
tcp-balancer 0.2.0 HEAD
7680
tenant 0.1.3 3d1b86c

0 commit comments

Comments
 (0)