Skip to content

Commit 1dd161e

Browse files
authored
Support for kubernetes 1.31 version (#3246)
1 parent ef1306b commit 1dd161e

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

.chloggen/operator31.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.31` version.
9+
10+
# One or more tracking issues related to the change
11+
issues: [3247]
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.30"
24+
- "1.31"
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.30"
21+
- "1.31"
2222

2323
steps:
2424

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ endif
5757

5858
START_KIND_CLUSTER ?= true
5959

60-
KUBE_VERSION ?= 1.30
60+
KUBE_VERSION ?= 1.31
6161
KIND_CONFIG ?= kind-$(KUBE_VERSION).yaml
6262
KIND_CLUSTER_NAME ?= "otel-operator"
6363

kind-1.31.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.31.0@sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865
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)