diff --git a/charts/perfectscale-agent/README.md b/charts/perfectscale-agent/README.md new file mode 100644 index 0000000..3f7feae --- /dev/null +++ b/charts/perfectscale-agent/README.md @@ -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 +``` diff --git a/charts/perfectscale-agent/values.yaml b/charts/perfectscale-agent/values.yaml index 041e179..f2ef935 100644 --- a/charts/perfectscale-agent/values.yaml +++ b/charts/perfectscale-agent/values.yaml @@ -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