http-add-on icon indicating copy to clipboard operation
http-add-on copied to clipboard

Add-on for KEDA to scale HTTP workloads

Results 106 http-add-on issues
Sort by recently updated
recently updated
newest added

We currently have mostly unit tests inside this repository, along with a few integration tests (like one for the interceptor coming in #206). I propose that we add more testing...

help wanted
feature
testing

We should support the following traffic flows/types: - [x] Ingress (*) - [x] Service-to-service (*) - [ ] https://github.com/kedacore/http-add-on/issues/6 - [ ] https://github.com/kedacore/http-add-on/issues/33 _(*) Current state as of Dec 2021...

traffic-sources
stale-bot-ignore
epic

We currently use a simple HTTP/JSON protocol for the scaler to communicate with the interceptor. Because this protocol is just request/response, it has limitations on latency that can cause very...

enhancement
good first issue
help wanted
feature

This PR changes the behavior of the interceptor when the app returns a `Location` header that does not have a host on it (i.e. `Location: "/abc"`). Prior to this patch,...

This PR replaces all usage of `env.Get*` in the operator codebase with the envconfig library, similar to how the interceptor and scaler parse configuration. Replaces #243 ### Checklist - [x]...

This PR removes unused ginkgo setup code in `operator/controllers/suite_test.go`. All that remains in that file is test infra setup code ### Checklist - [x] Commits are signed with Developer Certificate...

The interceptor should not just shut down when it receives a signal. Instead, it should ensure that all requests are complete and then shut down. ### Use-Case When KEDA scales...

enhancement
feature

@tpiperatgod created a great lifecycle diagram for the routing table in https://github.com/kedacore/http-add-on/pull/326#issuecomment-972946943. It would be very useful to add this diagram to documentation. ### Use-Case I think this diagram would...

documentation
cant-touch-this

Interceptor redirect to `http://service:80/path` instead of `http://url.com/path` ## Expected Behavior Redirect to `http://url.com/path` ## Actual Behavior Redirect from `http://url.com`to `http://service:80/path` ## Steps to Reproduce the Problem 1. Create service and...

bug
cant-touch-this

Adds prometheus instrumentation and a fetch endpoint for those instrumentation ### Checklist - [x] Commits are signed with Developer Certificate of Origin (DCO) - [x] Any necessary documentation is added,...

enhancement