Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: HTTP add-on v0.5.0 #24

Merged
merged 1 commit into from
Jun 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions artifacthub/add-ons-http/0.5.0/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<p align="center"><img src="https://github.com/kedacore/keda/raw/main/images/logos/keda-word-colour.png" width="300"/></p>

<p style="font-size: 25px" align="center"><b>Kubernetes-based Event Driven Autoscaling - HTTP Add-On</b></p>
<p style="font-size: 25px" align="center">

The KEDA HTTP Add-on allows Kubernetes users to automatically scale their HTTP servers up and down (including to/from zero) based on incoming HTTP traffic. Please see our [use cases document](./docs/use_cases.md) to learn more about how and why you would use this project.

| 🚧 **Project status: beta** 🚧|
|---------------------------------------------|
| :loudspeaker: **KEDA is actively relying on community contributions to help grow & maintain the add-on. The KEDA maintainers are assisting the community to evolve the add-on but not directly responsible for it.** Feel free to [open a new discussion](https://github.com/kedacore/http-add-on/discussions/new/choose) in case of questions.<br/><br/>⚠ The HTTP Add-on currently is in [beta](https://github.com/kedacore/http-add-on/releases/latest). We can't yet recommend it for production usage because we are still developing and testing it. It may have "rough edges" including missing documentation, bugs and other issues. It is currently provided as-is without support. |
46 changes: 46 additions & 0 deletions artifacthub/add-ons-http/0.5.0/artifacthub-pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Artifact Hub package metadata file
# https://github.com/artifacthub/hub/blob/master/docs/metadata/artifacthub-pkg.yml
version: 0.5.0
name: keda-add-ons-http
displayName: KEDA HTTP
createdAt: 2023-06-20T10:00:00Z
description: Event-based autoscaler for HTTP workloads on Kubernetes
license: Apache-2.0
homeURL: https://github.com/kedacore/http-add-on
keywords:
- keda
- http
- autoscaling
links:
- name: GitHub
url: https://github.com/kedacore/http-add-on
- name: Helm Registry
url: https://github.com/kedacore/charts
changes:
- kind: changed
description: New release
links:
- name: GitHub release
url: https://github.com/kedacore/charts/releases/tag/v0.5.0
provider:
name: KEDA
recommendations:
- url: https://artifacthub.io/packages/helm/kedacore/keda
install: |
You'll find abridged installation instructions for Helm here.
To find detailed instructions, please see:
https://github.com/kedacore/http-add-on/blob/main/docs/install.md

The KEDA HTTP Addon requires KEDA core to function. First,
ensure that your Helm repositories are properly configured:

$ helm repo add kedacore https://kedacore.github.io/charts
$ helm repo update

Next, install KEDA core:

$ helm install keda kedacore/keda --namespace <your namespace> --create-namespace

Finally, install the KEDA HTTP Addon:

$ helm install http-add-on kedacore/keda-add-ons-http --namespace <your namespace>