File tree Expand file tree Collapse file tree 2 files changed +42
-1
lines changed
charts/perfectscale-agent Expand file tree Collapse file tree 2 files changed +42
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Helm Chart For Perfectscale Exporter.
2
+
3
+ ## Prerequisites
4
+
5
+ * Install the follow packages: `` kubectl `` and `` helm ``
6
+ * Add new cluster in the Web UI https://app.perfectscale.io/ , copy clientId and clientSecret
7
+
8
+ Access a Kubernetes cluster.
9
+
10
+ Add a chart helm repository with follow commands:
11
+
12
+ ``` console
13
+ helm repo add perfectscale https://perfectscale-io.github.io --force-update
14
+ ```
15
+
16
+ Install chart with command:
17
+
18
+ ``` console
19
+
20
+ helm upgrade psc-exporter --install -n perfectscale --create-namespace perfectscale \
21
+ --set secret.create=true \
22
+ --set secret.clientId=***** \
23
+ --set secret.clientSecret=***** \
24
+ --set settings.clusterName=ClusterName \
25
+ perfectscale/exporter
26
+
27
+ ```
28
+
29
+ Get the pods lists by running this commands:
30
+
31
+ ``` console
32
+ kubectl get pods -n perfectscale
33
+ ```
34
+
35
+ ## How to uninstall
36
+
37
+ Remove application with command.
38
+
39
+ ``` console
40
+ helm uninstall psc-exporter -n perfectscale
41
+ ```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ replicaCount: 1
2
2
image :
3
3
repository : public.ecr.aws/perfectscale-io/psc-exporter
4
4
pullPolicy : Always
5
- tag : " v1.0.46 "
5
+ tag : " v1.0.47 "
6
6
initContainer :
7
7
image :
8
8
repository : public.ecr.aws/perfectscale-io/alpine
You can’t perform that action at this time.
0 commit comments