diff --git a/docs/walkthrough.md b/docs/walkthrough.md index 04159858e..248e7212e 100644 --- a/docs/walkthrough.md +++ b/docs/walkthrough.md @@ -42,7 +42,7 @@ kubectl apply -n $NAMESPACE -f examples/v0.8.0/httpscaledobject.yaml You've now installed a web application and activated autoscaling by creating an `HTTPScaledObject` for it. For autoscaling to work properly, HTTP traffic needs to route through the `Service` that the add-on has set up. You can use `kubectl port-forward` to quickly test things out: ```console -kubectl port-forward svc/keda-http-add-on-interceptor-proxy -n ${NAMESPACE} 8080:8080 +kubectl port-forward svc/keda-add-ons-http-interceptor-proxy -n ${NAMESPACE} 8080:8080 ``` ### Routing to the Right `Service` @@ -50,7 +50,7 @@ kubectl port-forward svc/keda-http-add-on-interceptor-proxy -n ${NAMESPACE} 8080 As said above, you need to route your HTTP traffic to the `Service` that the add-on has created during the installation. If you have existing systems - like an ingress controller - you'll need to anticipate the name of these created `Service`s. Each one will be named consistently like so, in the same namespace as the `HTTPScaledObject` and your application (i.e. `$NAMESPACE`): ```console -keda-http-add-on-interceptor-proxy +keda-add-ons-http-interceptor-proxy ``` > This is installed by raw manifests. If you are using the [Helm chart](https://github.com/kedacore/charts/tree/main/http-add-on) to install the add-on, it crates a service named `keda-add-ons-http-interceptor-proxy` as a `ClusterIP` by default. @@ -144,7 +144,7 @@ curl -H "Host: myhost.com" /path1 You can also use port-forward to interceptor service for making the request: ```console -kubectl port-forward svc/keda-http-add-on-interceptor-proxy -n ${NAMESPACE} 8080:8080 +kubectl port-forward svc/keda-add-ons-http-interceptor-proxy -n ${NAMESPACE} 8080:8080 curl -H "Host: myhost.com" localhost:8080/path1 ``` diff --git a/examples/xkcd/templates/externalservice.yaml b/examples/xkcd/templates/externalservice.yaml index 5e4ec487d..f5b736f40 100644 --- a/examples/xkcd/templates/externalservice.yaml +++ b/examples/xkcd/templates/externalservice.yaml @@ -6,4 +6,4 @@ metadata: {{- include "xkcd.labels" . | nindent 4 }} spec: type: ExternalName - externalName: keda-http-add-on-interceptor-proxy.keda + externalName: keda-add-ons-http-interceptor-proxy.keda