Skip to content

Commit 47bd88c

Browse files
author
github-actions
committed
Update perfectscale-agent chart with new package version v1.0.47
1 parent e6d30d3 commit 47bd88c

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

charts/perfectscale-agent/README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
```

charts/perfectscale-agent/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ replicaCount: 1
22
image:
33
repository: public.ecr.aws/perfectscale-io/psc-exporter
44
pullPolicy: Always
5-
tag: "v1.0.46"
5+
tag: "v1.0.47"
66
initContainer:
77
image:
88
repository: public.ecr.aws/perfectscale-io/alpine

0 commit comments

Comments
 (0)