Skip to content

Commit 406bfa1

Browse files
authored
Run e2e tests on Kubernetes 1.28 (#2047)
* Run e2e tests on Kubernetes 1.28 Signed-off-by: Pavol Loffay <[email protected]> * Run e2e tests on Kubernetes 1.28 Signed-off-by: Pavol Loffay <[email protected]> * Run e2e tests on Kubernetes 1.28 Signed-off-by: Pavol Loffay <[email protected]> --------- Signed-off-by: Pavol Loffay <[email protected]>
1 parent a0c9d76 commit 406bfa1

File tree

4 files changed

+36
-2
lines changed

4 files changed

+36
-2
lines changed

.chloggen/kube128.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
2+
change_type: enhancement
3+
4+
# The name of the component, or a single word describing the area of concern, (e.g. operator, target allocator, github action)
5+
component: operator
6+
7+
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
8+
note: Run end-to-end tests on Kubernetes 1.28
9+
10+
# One or more tracking issues related to the change
11+
issues: [2047]
12+
13+
# (Optional) One or more lines of additional information to render under the primary note.
14+
# These lines will be padded with 2 spaces and then inserted directly into the document.
15+
# Use pipe (|) for multiline entries.
16+
subtext:

.github/workflows/e2e.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# should be compatible with them.
2727
kube-version:
2828
- "1.19"
29-
- "1.27"
29+
- "1.28"
3030
group:
3131
- e2e e2e-upgrade
3232
- e2e-prometheuscr

.github/workflows/scorecard.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
matrix:
2323
kube-version:
2424
- "1.19"
25-
- "1.27"
25+
- "1.28"
2626

2727
steps:
2828

kind-1.28.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
kind: Cluster
2+
apiVersion: kind.x-k8s.io/v1alpha4
3+
nodes:
4+
- role: control-plane
5+
image: kindest/node:v1.28.0@sha256:b7a4cad12c197af3ba43202d3efe03246b3f0793f162afb40a33c923952d5b31
6+
kubeadmConfigPatches:
7+
- |
8+
kind: InitConfiguration
9+
nodeRegistration:
10+
kubeletExtraArgs:
11+
node-labels: "ingress-ready=true"
12+
extraPortMappings:
13+
- containerPort: 80
14+
hostPort: 80
15+
protocol: TCP
16+
- containerPort: 443
17+
hostPort: 443
18+
protocol: TCP

0 commit comments

Comments
 (0)