Skip to content

Commit c166692

Browse files
committed
chore: prepare for release
Signed-off-by: Bence Csati <[email protected]>
1 parent 236cbfb commit c166692

File tree

7 files changed

+198
-182
lines changed

7 files changed

+198
-182
lines changed

.github/workflows/e2e.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
pull_request:
99

1010
env:
11-
KUBECTL_VERSION: 'v1.32.0'
11+
KUBECTL_VERSION: 'v1.33.0'
1212

1313
jobs:
1414
build:
@@ -43,7 +43,7 @@ jobs:
4343
strategy:
4444
fail-fast: false
4545
matrix:
46-
kube: ["1.30", "1.31", "1.32"]
46+
kube: ["1.31", "1.32", "1.33"]
4747

4848
steps:
4949
- name: Set up Docker Buildx
@@ -73,12 +73,12 @@ jobs:
7373
id: node_image
7474
run: |
7575
case ${{ matrix.kube }} in
76-
1.30)
77-
NODE_IMAGE=kindest/node:v1.30.0@sha256:2af5d1b382926abcd6336312d652cd045b7cc47475844a608669c71b1fefcfbc ;;
7876
1.31)
7977
NODE_IMAGE=kindest/node:v1.31.0@sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865 ;;
8078
1.32)
81-
NODE_IMAGE=kindest/node:v1.32.0@sha256:c48c62eac5da28cdadcf560d1d8616cfa6783b58f0d94cf63ad1bf49600cb027
79+
NODE_IMAGE=kindest/node:v1.32.0@sha256:c48c62eac5da28cdadcf560d1d8616cfa6783b58f0d94cf63ad1bf49600cb027 ;;
80+
1.33)
81+
NODE_IMAGE=kindest/node:v1.33.0@sha256:02f73d6ae3f11ad5d543f16736a2cb2a63a300ad60e81dac22099b0b04784a4e
8282
esac
8383
8484
echo "image=$NODE_IMAGE" >> $GITHUB_OUTPUT

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@
66
CONTROLLER_TOOLS_VERSION := 0.17.3
77

88
# renovate: datasource=github-releases depName=kubernetes-sigs/kustomize versioning=semver
9-
KUSTOMIZE_VERSION := 5.5.0
9+
KUSTOMIZE_VERSION := 5.6.0
1010

1111
# renovate: datasource=github-releases depName=golangci/golangci-lint versioning=semver
1212
GOLANGCI_LINT_VERSION := 2.1.5
1313

1414
# renovate: datasource=github-releases depName=kubernetes-sigs/kind versioning=semver
15-
KIND_VERSION ?= 0.26.0
15+
KIND_VERSION ?= 0.27.0
1616

1717
# renovate: datasource=go depName=github.com/goph/licensei versioning=semver
1818
LICENSEI_VERSION = 0.9.0
1919

2020
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
21-
ENVTEST_K8S_VERSION = 1.31.0
22-
ENVTEST_OTEL_OPERATOR_VERSION=v0.112.0
21+
ENVTEST_K8S_VERSION = 1.32.0
22+
ENVTEST_OTEL_OPERATOR_VERSION=v0.120.0
2323

2424
BIN := ${PWD}/bin
2525

@@ -28,7 +28,7 @@ export PATH := $(BIN):$(PATH)
2828
GOVERSION := $(shell go env GOVERSION)
2929

3030
KIND := ${BIN}/kind
31-
KIND_IMAGE ?= kindest/node:v1.31.2@sha256:18fbefc20a7113353c7b75b5c869d7145a6abd6269154825872dc59c1329912e
31+
KIND_IMAGE ?= kindest/node:v1.33.0@sha256:02f73d6ae3f11ad5d543f16736a2cb2a63a300ad60e81dac22099b0b04784a4e
3232
KIND_CLUSTER := kind
3333

3434
# Image URL to use all building/pushing image targets

charts/telemetry-controller/crds/telemetry.kube-logging.dev_collectors.yaml

+28-20
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ spec:
282282
Cannot be updated.
283283
items:
284284
description: EnvFromSource represents the source of a
285-
set of ConfigMaps
285+
set of ConfigMaps or Secrets
286286
properties:
287287
configMapRef:
288288
description: The ConfigMap to select from
@@ -303,8 +303,8 @@ spec:
303303
type: object
304304
x-kubernetes-map-type: atomic
305305
prefix:
306-
description: An optional identifier to prepend to
307-
each key in the ConfigMap. Must be a C_IDENTIFIER.
306+
description: Optional text to prepend to the name
307+
of each environment variable. Must be a C_IDENTIFIER.
308308
type: string
309309
secretRef:
310310
description: The Secret to select from
@@ -568,6 +568,12 @@ spec:
568568
- port
569569
type: object
570570
type: object
571+
stopSignal:
572+
description: |-
573+
StopSignal defines which signal will be sent to a container when it is being stopped.
574+
If not specified, the default is defined by the container runtime in use.
575+
StopSignal can only be set for Pods with a non-empty .spec.os.name
576+
type: string
571577
type: object
572578
livenessProbe:
573579
description: |-
@@ -1831,7 +1837,6 @@ spec:
18311837
pod labels will be ignored. The default value is empty.
18321838
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
18331839
Also, matchLabelKeys cannot be set when labelSelector isn't set.
1834-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
18351840
items:
18361841
type: string
18371842
type: array
@@ -1846,7 +1851,6 @@ spec:
18461851
pod labels will be ignored. The default value is empty.
18471852
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
18481853
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
1849-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
18501854
items:
18511855
type: string
18521856
type: array
@@ -2013,7 +2017,6 @@ spec:
20132017
pod labels will be ignored. The default value is empty.
20142018
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
20152019
Also, matchLabelKeys cannot be set when labelSelector isn't set.
2016-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
20172020
items:
20182021
type: string
20192022
type: array
@@ -2028,7 +2031,6 @@ spec:
20282031
pod labels will be ignored. The default value is empty.
20292032
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
20302033
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
2031-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
20322034
items:
20332035
type: string
20342036
type: array
@@ -2193,7 +2195,6 @@ spec:
21932195
pod labels will be ignored. The default value is empty.
21942196
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
21952197
Also, matchLabelKeys cannot be set when labelSelector isn't set.
2196-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
21972198
items:
21982199
type: string
21992200
type: array
@@ -2208,7 +2209,6 @@ spec:
22082209
pod labels will be ignored. The default value is empty.
22092210
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
22102211
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
2211-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
22122212
items:
22132213
type: string
22142214
type: array
@@ -2375,7 +2375,6 @@ spec:
23752375
pod labels will be ignored. The default value is empty.
23762376
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
23772377
Also, matchLabelKeys cannot be set when labelSelector isn't set.
2378-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
23792378
items:
23802379
type: string
23812380
type: array
@@ -2390,7 +2389,6 @@ spec:
23902389
pod labels will be ignored. The default value is empty.
23912390
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
23922391
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
2393-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
23942392
items:
23952393
type: string
23962394
type: array
@@ -2603,7 +2601,7 @@ spec:
26032601
on the generated pods.
26042602
items:
26052603
description: EnvFromSource represents the source of a set of
2606-
ConfigMaps
2604+
ConfigMaps or Secrets
26072605
properties:
26082606
configMapRef:
26092607
description: The ConfigMap to select from
@@ -2623,8 +2621,8 @@ spec:
26232621
type: object
26242622
x-kubernetes-map-type: atomic
26252623
prefix:
2626-
description: An optional identifier to prepend to each key
2627-
in the ConfigMap. Must be a C_IDENTIFIER.
2624+
description: Optional text to prepend to the name of each
2625+
environment variable. Must be a C_IDENTIFIER.
26282626
type: string
26292627
secretRef:
26302628
description: The Secret to select from
@@ -2831,7 +2829,7 @@ spec:
28312829
Cannot be updated.
28322830
items:
28332831
description: EnvFromSource represents the source of a
2834-
set of ConfigMaps
2832+
set of ConfigMaps or Secrets
28352833
properties:
28362834
configMapRef:
28372835
description: The ConfigMap to select from
@@ -2852,8 +2850,8 @@ spec:
28522850
type: object
28532851
x-kubernetes-map-type: atomic
28542852
prefix:
2855-
description: An optional identifier to prepend to
2856-
each key in the ConfigMap. Must be a C_IDENTIFIER.
2853+
description: Optional text to prepend to the name
2854+
of each environment variable. Must be a C_IDENTIFIER.
28572855
type: string
28582856
secretRef:
28592857
description: The Secret to select from
@@ -3117,6 +3115,12 @@ spec:
31173115
- port
31183116
type: object
31193117
type: object
3118+
stopSignal:
3119+
description: |-
3120+
StopSignal defines which signal will be sent to a container when it is being stopped.
3121+
If not specified, the default is defined by the container runtime in use.
3122+
StopSignal can only be set for Pods with a non-empty .spec.os.name
3123+
type: string
31203124
type: object
31213125
livenessProbe:
31223126
description: |-
@@ -4332,6 +4336,12 @@ spec:
43324336
- port
43334337
type: object
43344338
type: object
4339+
stopSignal:
4340+
description: |-
4341+
StopSignal defines which signal will be sent to a container when it is being stopped.
4342+
If not specified, the default is defined by the container runtime in use.
4343+
StopSignal can only be set for Pods with a non-empty .spec.os.name
4344+
type: string
43354345
type: object
43364346
managementState:
43374347
default: managed
@@ -5199,7 +5209,6 @@ spec:
51995209
- Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
52005210
52015211
If this value is nil, the behavior is equivalent to the Honor policy.
5202-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
52035212
type: string
52045213
nodeTaintsPolicy:
52055214
description: |-
@@ -5210,7 +5219,6 @@ spec:
52105219
- Ignore: node taints are ignored. All nodes are included.
52115220
52125221
If this value is nil, the behavior is equivalent to the Ignore policy.
5213-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
52145222
type: string
52155223
topologyKey:
52165224
description: |-
@@ -6245,7 +6253,7 @@ spec:
62456253
The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field.
62466254
The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images.
62476255
The volume will be mounted read-only (ro) and non-executable files (noexec).
6248-
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath).
6256+
Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33.
62496257
The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type.
62506258
properties:
62516259
pullPolicy:

0 commit comments

Comments
 (0)