Skip to content

Commit 25c5cfa

Browse files
authored
Support for kubernetes 1.32 version (#3544)
1 parent c414b4d commit 25c5cfa

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

.chloggen/operator32.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: Support for Kubernetes `1.32` version.
9+
10+
# One or more tracking issues related to the change
11+
issues: [ ]
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
@@ -21,7 +21,7 @@ jobs:
2121
# should be compatible with them.
2222
kube-version:
2323
- "1.23"
24-
- "1.31"
24+
- "1.32"
2525
group:
2626
- e2e
2727
- e2e-automatic-rbac

.github/workflows/scorecard.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
kube-version:
2020
- "1.23"
21-
- "1.31"
21+
- "1.32"
2222

2323
steps:
2424

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ endif
5959

6060
START_KIND_CLUSTER ?= true
6161

62-
KUBE_VERSION ?= 1.31
62+
KUBE_VERSION ?= 1.32
6363
KIND_CONFIG ?= kind-$(KUBE_VERSION).yaml
6464
KIND_CLUSTER_NAME ?= "otel-operator"
6565

kind-1.32.yaml

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

0 commit comments

Comments
 (0)