Skip to content

Commit

Permalink
Run e2e tests on Kubernetes 1.28 (open-telemetry#2047)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
pavolloffay authored Aug 23, 2023
1 parent 67720cf commit 6ed7474
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .chloggen/kube128.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, target allocator, github action)
component: operator

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Run end-to-end tests on Kubernetes 1.28

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

# (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:
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# should be compatible with them.
kube-version:
- "1.19"
- "1.27"
- "1.28"
group:
- e2e e2e-upgrade
- e2e-prometheuscr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
kube-version:
- "1.19"
- "1.27"
- "1.28"

steps:

Expand Down
18 changes: 18 additions & 0 deletions kind-1.28.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.28.0@sha256:b7a4cad12c197af3ba43202d3efe03246b3f0793f162afb40a33c923952d5b31
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 6ed7474

Please sign in to comment.