Skip to content

Commit c5a252e

Browse files
committed
fix: Rename keda-add-ons-http-interceptor-proxy to keda-http-add-on-interceptor-proxy
Signed-off-by: kahirokunn <[email protected]>
1 parent 993b7bf commit c5a252e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ K9s integrates Hey, a CLI tool to benchmark HTTP endpoints similar to AB bench.
9797
9898
(b) search for services using - “:service”
9999
100-
(c) HTTP traffic needs to route through the Service that the add on has set up. Find interceptor proxy service i.e. ‘keda-add-ons-http-interceptor-proxy’ and port forward it using <SHIFT+F>
100+
(c) HTTP traffic needs to route through the Service that the add on has set up. Find interceptor proxy service i.e. ‘keda-http-add-on-interceptor-proxy’ and port forward it using <SHIFT+F>
101101
102102
(d) Search for the same port-forward in the list you get by command - “:pf”
103103

docs/design.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ When the `HTTPScaledObject` is deleted, the operator reverses all of the aforeme
2929

3030
### Autoscaling for HTTP Apps
3131

32-
After an `HTTPScaledObject` is created and the operator creates the appropriate resources, you must send HTTP requests through the interceptor so that the application is scaled. A Kubernetes `Service` called `keda-add-ons-http-interceptor-proxy` was created when you `helm install`ed the add-on. Send requests to that service.
32+
After an `HTTPScaledObject` is created and the operator creates the appropriate resources, you must send HTTP requests through the interceptor so that the application is scaled. A Kubernetes `Service` called `keda-http-add-on-interceptor-proxy` was created when you `helm install`ed the add-on. Send requests to that service.
3333

3434
The interceptor keeps track of the number of pending HTTP requests - HTTP requests that it has forwarded but the app hasn't returned. The scaler periodically makes HTTP requests to the interceptor via an internal RPC endpoint - on a separate port from the public server - to get the size of the pending queue. Based on this queue size, it reports scaling metrics as appropriate to KEDA. As the queue size increases, the scaler instructs KEDA to scale up as appropriate. Similarly, as the queue size decreases, the scaler instructs KEDA to scale down.
3535

docs/integrations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
1. **Proxy Service in Virtual Service:**
88

99
- Within the Istio virtual service definition, add a proxy service as a route destination.
10-
- Set the host of this proxy service to `keda-add-ons-http-interceptor-proxy`` (the KEDA HTTP Addon interceptor service).
10+
- Set the host of this proxy service to `keda-http-add-on-interceptor-proxy`` (the KEDA HTTP Addon interceptor service).
1111
- Set the port to `8080`` (the default interceptor port).
1212

1313
**Example yaml**
@@ -22,7 +22,7 @@ spec:
2222
http:
2323
- route:
2424
- destination:
25-
host: keda-add-ons-http-interceptor-proxy
25+
host: keda-http-add-on-interceptor-proxy
2626
port: 8080
2727
```
2828

docs/walkthrough.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ As said above, you need to route your HTTP traffic to the `Service` that the add
5353
keda-http-add-on-interceptor-proxy
5454
```
5555

56-
> 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.
56+
> 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-http-add-on-interceptor-proxy` as a `ClusterIP` by default.
5757
5858
#### Installing and Using the [ingress-nginx](https://kubernetes.github.io/ingress-nginx/deploy/#using-helm) Ingress Controller
5959

examples/xkcd/templates/httproute.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ spec:
1414
rules:
1515
- backendRefs:
1616
- kind: Service
17-
name: keda-add-ons-http-interceptor-proxy
17+
name: keda-http-add-on-interceptor-proxy
1818
namespace: keda
1919
port: 8080
2020
matches:
@@ -35,5 +35,5 @@ spec:
3535
to:
3636
- group: ""
3737
kind: Service
38-
name: keda-add-ons-http-interceptor-proxy
38+
name: keda-http-add-on-interceptor-proxy
3939
{{- end }}

0 commit comments

Comments
 (0)