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

Add tlsConfig for ServiceMonitor #539

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
99fc202
Added prometheus port name
guicholeo Sep 28, 2023
6b0530b
Rebase
guicholeo Nov 13, 2023
6443b5c
Allow image registry override for all keda components (#557)
QuentinBisson Nov 18, 2023
7fd1a56
docs: Clarify that contributors do not have to ship Helm chart (#573)
tomkerkhove Nov 23, 2023
ad3785a
add disable-compression arg for both operator and metrics-server (#554)
Adarsh-verma-14 Nov 27, 2023
93c5975
feat: Introduce CloudEventSources CRD and adding ClusterName paramete…
SpiritZhou Nov 28, 2023
9bd385b
store 2.12.1 package at `main` (#577)
zroubalik Nov 28, 2023
eca6397
fix: restore http-add-on chart 0.6.0 indexing (#579)
JorTurFer Nov 30, 2023
1ff4af4
fix(add-on): Use 'main' tag for KEDA installation during CI (#582)
JorTurFer Dec 3, 2023
d5468e7
set securityContext for http-add-on chart (#561)
eumel8 Dec 3, 2023
ccd2e50
Fix http-add-on operator resources (#567)
aballman Dec 6, 2023
71c7583
Fix http-add-on verbosity configuration (#568)
aballman Dec 6, 2023
73dbd6f
chore: Adjust RBAC with code (#585)
JorTurFer Dec 20, 2023
b7ad8bb
fix: Don't recreate CA with 8 months until it expires (#586)
JorTurFer Jan 8, 2024
b7ad90a
Removed port/portname changes
guicholeo Jan 12, 2024
63b9d34
Update Helm Docs
guicholeo Jan 12, 2024
94aae69
feat(ClusterRole): Add RBAC rule to allow access to `LimitRange` (#588)
Bhargav-InfraCloud Jan 17, 2024
1e0a782
remove not required insecureSkipTLSVerify (#564)
eumel8 Jan 17, 2024
f9098dd
Update templates/webhooks deployment (#590)
ferndem Jan 18, 2024
8c080b2
Fix Prometheus metrics handling for the operator. (#555)
mplzik Jan 18, 2024
98da80e
Fix Remove app.kubernetes.io/instance label in crd (#556)
choisungwook Jan 18, 2024
b5f1a50
Support crd-specific annotations (#584)
awalford16 Jan 18, 2024
5f9bd53
Update keda/templates/webhooks/service.yaml
JorTurFer Jan 18, 2024
baa6938
move tls config the the proper section
JorTurFer Jan 18, 2024
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
6 changes: 6 additions & 0 deletions .github/workflows/ci-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@ jobs:

- name: Verify scaledobjects.keda.sh CRD is installed
run: kubectl get crd/scaledobjects.keda.sh -o wide

- name: Verify cloudeventsources.eventing.keda.sh CRD is installed
run: kubectl get crd/cloudeventsources.eventing.keda.sh -o wide

- name: Get all ScaledObjects
run: kubectl get scaledobjects -o wide
Expand All @@ -210,6 +213,9 @@ jobs:
- name: Get all ClusterTriggerAuthentication
run: kubectl get clustertriggerauth -o wide

- name: Get all CloudEventSource
run: kubectl get cloudeventsource -o wide

- name: Deploy Nginx with autoscaling
run: kubectl apply -f ./samples/nginx-scaledobject.yml

Expand Down
13 changes: 12 additions & 1 deletion .github/workflows/ci-http-add-on.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,19 @@ jobs:
- name: Create KEDA namespace
run: kubectl create ns keda

- name: Generate values
run: |
cat <<EOF > keda-values.yaml
image:
keda:
tag: main
metricsApiServer:
tag: main
webhooks:
tag: main

- name: Install KEDA chart
run: helm install keda ./keda/ --namespace keda
run: helm install keda ./keda/ --namespace keda --values keda-values.yaml

- name: Generate values
run: |
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Thanks for helping making KEDA better!

## Shipping a new version

> ⚠️ New Helm chart versions are only released in conjunction with KEDA Core or hotfixes, individual PRs do not have to perform these steps

You can easily release a new Helm chart version:

1. Update the version of the Helm chart in [Chart.yaml](keda/Chart.yaml).
Expand Down
Loading
Loading