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

revert: Go back to supporting Kubernetes 1.27 to 1.29 for KEDA v2.14 #5743

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/3_bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,11 @@ body:
label: Kubernetes Version
description: What version of Kubernetes that are you running?
options:
- "1.30"
- "1.29"
- "1.28"
- "< 1.28"
- "1.27"
- "1.26"
- "< 1.26"
- "Other"
validations:
required: false
Expand Down
4 changes: 2 additions & 2 deletions pkg/util/welcome.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
)

const (
minSupportedVersion = 28
maxSupportedVersion = 30
minSupportedVersion = 27
maxSupportedVersion = 29
)

func PrintWelcome(logger logr.Logger, kubeVersion K8sVersion, component string) {
Expand Down
Loading