Skip to content

Commit

Permalink
Kubernetes 1.29 enablement (#807)
Browse files Browse the repository at this point in the history
* Kubernetes 1.29 enablement

Signed-off-by: Yuri Sa <[email protected]>

* Kubernetes 1.29 enablement

Signed-off-by: Yuri Sa <[email protected]>

* Deactivated fail-fast

Signed-off-by: Yuri Sa <[email protected]>

---------

Signed-off-by: Yuri Sa <[email protected]>
Co-authored-by: Andreas Gerstmayr <[email protected]>
  • Loading branch information
yuriolisa and andreasgerstmayr authored Mar 6, 2024
1 parent 50fc05e commit 83b6a17
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .chloggen/enable-129.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: 'enhancement'

# The name of the component, or a single word describing the area of concern, (e.g. operator, github action)
component: operator

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Kubernetes 1.29 enablement

# One or more tracking issues related to the change
issues: [735]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# should be compatible with them.
kube-version:
- "1.25"
- "1.28"
- "1.29"

steps:
- name: Checkout
Expand All @@ -48,7 +48,7 @@ jobs:
strategy:
matrix:
kube-version:
- "1.28"
- "1.29"

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
kube-version:
- "1.25"
- "1.28"
- "1.29"

steps:
- name: Checkout
Expand Down
18 changes: 18 additions & 0 deletions kind-1.29.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.29.2@sha256:acc9e82a5a5bd3dfccfd03117e9ef5f96b46108b55cd647fb5e7d0d1a35c9c6f
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
extraPortMappings:
- containerPort: 80
hostPort: 80
protocol: TCP
- containerPort: 443
hostPort: 443
protocol: TCP

0 comments on commit 83b6a17

Please sign in to comment.