-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update perfectscale-agent chart with new package version v1.0.47
- Loading branch information
github-actions
committed
Nov 30, 2024
1 parent
e6d30d3
commit 47bd88c
Showing
2 changed files
with
42 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Helm Chart For Perfectscale Exporter. | ||
|
||
## Prerequisites | ||
|
||
* Install the follow packages: ``kubectl`` and ``helm`` | ||
* Add new cluster in the Web UI https://app.perfectscale.io/, copy clientId and clientSecret | ||
|
||
Access a Kubernetes cluster. | ||
|
||
Add a chart helm repository with follow commands: | ||
|
||
```console | ||
helm repo add perfectscale https://perfectscale-io.github.io --force-update | ||
``` | ||
|
||
Install chart with command: | ||
|
||
```console | ||
|
||
helm upgrade psc-exporter --install -n perfectscale --create-namespace perfectscale \ | ||
--set secret.create=true \ | ||
--set secret.clientId=***** \ | ||
--set secret.clientSecret=***** \ | ||
--set settings.clusterName=ClusterName \ | ||
perfectscale/exporter | ||
|
||
``` | ||
|
||
Get the pods lists by running this commands: | ||
|
||
```console | ||
kubectl get pods -n perfectscale | ||
``` | ||
|
||
## How to uninstall | ||
|
||
Remove application with command. | ||
|
||
```console | ||
helm uninstall psc-exporter -n perfectscale | ||
``` |
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