Skip to content

Commit

Permalink
Update perfectscale-agent chart with new package version v1.0.47
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Nov 30, 2024
1 parent e6d30d3 commit 47bd88c
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 1 deletion.
41 changes: 41 additions & 0 deletions charts/perfectscale-agent/README.md
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
```
2 changes: 1 addition & 1 deletion charts/perfectscale-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ replicaCount: 1
image:
repository: public.ecr.aws/perfectscale-io/psc-exporter
pullPolicy: Always
tag: "v1.0.46"
tag: "v1.0.47"
initContainer:
image:
repository: public.ecr.aws/perfectscale-io/alpine
Expand Down

0 comments on commit 47bd88c

Please sign in to comment.