-
Notifications
You must be signed in to change notification settings - Fork 176
Add Keda Deployer #3386
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
base: main
Are you sure you want to change the base?
Add Keda Deployer #3386
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## main #3386 +/- ##
==========================================
- Coverage 54.61% 54.56% -0.05%
==========================================
Files 173 179 +6
Lines 19814 20216 +402
==========================================
+ Hits 10821 11031 +210
- Misses 7861 8015 +154
- Partials 1132 1170 +38
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
/test all |
| CooldownPeriod: ptr.To(int32(300)), | ||
| ScalingMetric: &httpv1alpha1.ScalingMetricSpec{ | ||
| Rate: &httpv1alpha1.RateMetricSpec{ | ||
| TargetValue: 100, | ||
| Window: metav1.Duration{ | ||
| Duration: time.Minute, | ||
| }, | ||
| Granularity: metav1.Duration{ | ||
| Duration: time.Second, | ||
| }, | ||
| }, | ||
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go.mod
Outdated
|
|
||
| // Override invalid k8s.io/client-go v1.5.2 requirement from keda http-add-on | ||
| // keda uses a replace directive internally, but those don't propagate to dependents | ||
| replace k8s.io/client-go => k8s.io/client-go v0.34.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR to resolve this in the KHA is open and will probably be released next week, just need to fix CI, see kedacore/http-add-on#1424
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome. Thanks a lot
|
https://github.com/knative/func/pull/3386/files#diff-de5ffd1deebc759567528bb5daaae836c26cd37338fce587cb54276caf9291e0R111-R114 func/pkg/functions/function.go Line 213 in 8206b24
|
# Conflicts: # go.mod # go.sum
|
infra issue |
| module knative.dev/func | ||
|
|
||
| go 1.24.4 | ||
| go 1.25.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is inclusion of the patch version necessary (can't we just have 1.25)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also what dependency required 1.25?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This came when I added the keda http-addon. This is on 1.25.5 (https://github.com/kedacore/http-add-on/blob/8f2e332219c3949d5b0098b9700fd3014c6c6429/go.mod#L3)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I dont think we can bump if midstream is 1.24. This missmatch caused trouble in the past
| case keda.KedaDeployerName: | ||
| // use same in-cluster dialer as Kubernetes Deployer | ||
| fallthrough | ||
| case k8s.KubernetesDeployerName: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: I think this could be little bit verbose using comma:
case keda.KedaDeployerName, k8s.KubernetesDeployerName:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simplified
|
I haven't found anything to change. Once the standing questions/discussions are resolved -- lgtm |
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: creydr, matejvasek The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
|
/lgtm |
Fixes #3390
Changes
Currently only exposes the function cluster internally. Issue to make the externally available is #3391.
/kind enhancement
Flow
flowchart TD U(User/other service) -->|accesses| A A[Entrypoint - Bridge Service] -->|forwards request| B B[Keda HTTP add-on interceptor-proxy] -->|forwards request| C B -.->|reads| E B -.->|scales| D C[App service] -->|forwards request| D D[Deployment] E{HTTPScaledObject}Test procedure:
make builde.g.
cd /tmp & git clone https://github.com/creydr/func-go-hello-worldRelease Note