Skip to content

Commit 63bcf1d

Browse files
authoredMay 22, 2024
Support for kubernetes 1.30 version (open-telemetry#2975)
* Support for kubernetes 1.30 version * Update makefile
1 parent b461534 commit 63bcf1d

File tree

5 files changed

+37
-3
lines changed

5 files changed

+37
-3
lines changed
 

‎.chloggen/kind130.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.30 version.
9+
10+
# One or more tracking issues related to the change
11+
issues: [2881]
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.29"
24+
- "1.30"
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.29"
21+
- "1.30"
2222

2323
steps:
2424

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ endif
6262

6363
START_KIND_CLUSTER ?= true
6464

65-
KUBE_VERSION ?= 1.29
65+
KUBE_VERSION ?= 1.30
6666
KIND_CONFIG ?= kind-$(KUBE_VERSION).yaml
6767
KIND_CLUSTER_NAME ?= "otel-operator"
6868

‎kind-1.30.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.30.0@sha256:047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e
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)