From add236fd88cf567f350a8a3486a2474b5e8a708e Mon Sep 17 00:00:00 2001 From: Manuel Gerding <50632744+ManuelGerding@users.noreply.github.com> Date: Mon, 31 Jul 2023 14:03:25 +0200 Subject: [PATCH] Fixed helm-chart and docker-example in README.md --- README.md | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index cdda1cc..304a7de 100644 --- a/README.md +++ b/README.md @@ -19,23 +19,23 @@ The extension supports all environment variables provided by [steadybit/extensio ## Installation -We recommend that you deploy the extension with our [official Helm chart](https://github.com/steadybit/extension-prometheus/tree/main/charts/steadybit-extension-prometheus). +We recommend deploying the extension with our [official Helm chart](https://github.com/steadybit/extension-prometheus/tree/main/charts/steadybit-extension-prometheus). ### Helm ```sh -helm repo add steadybit https://steadybit.github.io/extension-prometheus +helm repo add steadybit-extension-prometheus https://steadybit.github.io/extension-prometheus helm repo update -helm upgrade steadybit-extension-prometheus \\ - --install \\ - --wait \\ - --timeout 5m0s \\ - --create-namespace \\ - --namespace steadybit-extension \\ - --set prometheus.name="dev" \\ - --set prometheus.origin="http://prometheus-server.default.svc.cluster.local" \\ - steadybit/steadybit-extension-prometheus +helm upgrade steadybit-extension-prometheus \ + --install \ + --wait \ + --timeout 5m0s \ + --create-namespace \ + --namespace steadybit-extension \ + --set prometheus.name="dev" \ + --set prometheus.origin="http://prometheus-server.default.svc.cluster.local" \ + steadybit-extension-prometheus/steadybit-extension-prometheus ``` ### Docker @@ -43,11 +43,11 @@ helm upgrade steadybit-extension-prometheus \\ You may alternatively start the Docker container manually. ```sh -docker run \\ - --env STEADYBIT_LOG_LEVEL=info \\ - --expose 8087 \\ - --env STEADYBIT_EXTENSION_PROMETHEUS_INSTANCE_0_NAME="{{SYMBOLIC_NAME}}" \\ - --env STEADYBIT_EXTENSION_PROMETHEUS_INSTANCE_0_ORIGIN="{{PROMETHEUS_INSTANCE_SERVER_ORIGIN}}" \\ +docker run \ + --env STEADYBIT_LOG_LEVEL=info \ + --expose 8087 \ + --env STEADYBIT_EXTENSION_PROMETHEUS_INSTANCE_0_NAME="{{SYMBOLIC_NAME}}" \ + --env STEADYBIT_EXTENSION_PROMETHEUS_INSTANCE_0_ORIGIN="{{PROMETHEUS_INSTANCE_SERVER_ORIGIN}}" \ ghcr.io/steadybit/extension-prometheus:latest ```