Skip to content

Commit 38f47f0

Browse files
authored
Upgrade Operator-SDK v1.29.0 (#1855)
Signed-off-by: Yuri Sa <[email protected]>
1 parent 3462c9c commit 38f47f0

6 files changed

+24
-8
lines changed

.chloggen/update-operator-sdk128.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: Operator-sdk upgrade to v1.29.0
9+
10+
# One or more tracking issues related to the change
11+
issues: [1755]
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:

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ KUBE_VERSION ?= 1.24
6161
KIND_CONFIG ?= kind-$(KUBE_VERSION).yaml
6262
KIND_CLUSTER_NAME ?= "otel-operator"
6363

64-
OPERATOR_SDK_VERSION ?= 1.27.0
64+
OPERATOR_SDK_VERSION ?= 1.29.0
6565

6666
CERTMANAGER_VERSION ?= 1.10.0
6767

@@ -301,7 +301,7 @@ kustomize: ## Download kustomize locally if necessary.
301301
.PHONY: controller-gen
302302
controller-gen: $(CONTROLLER_GEN) ## Download controller-gen locally if necessary.
303303
$(CONTROLLER_GEN): $(LOCALBIN)
304-
test -s $(LOCALBIN)/controller-gen || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_TOOLS_VERSION)
304+
test -s $(LOCALBIN)/controller-gen && $(LOCALBIN)/controller-gen --version | grep -q $(CONTROLLER_TOOLS_VERSION) || GOBIN=$(LOCALBIN) go install sigs.k8s.io/controller-tools/cmd/controller-gen@$(CONTROLLER_TOOLS_VERSION)
305305

306306
.PHONY: envtest
307307
envtest: $(ENVTEST) ## Download envtest-setup locally if necessary.

bundle.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
66
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=opentelemetry-operator
88
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
9-
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.27.0
9+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.29.0
1010
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1111
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
1212

bundle/manifests/opentelemetry-operator.clusterserviceversion.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ metadata:
3131
categories: Logging & Tracing
3232
certified: "false"
3333
containerImage: ghcr.io/open-telemetry/opentelemetry-operator/opentelemetry-operator
34-
createdAt: "2023-06-08T08:15:18Z"
34+
createdAt: "2023-06-20T11:50:16Z"
3535
description: Provides the OpenTelemetry components, including the Collector
36-
operators.operatorframework.io/builder: operator-sdk-v1.27.0
36+
operators.operatorframework.io/builder: operator-sdk-v1.29.0
3737
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
3838
repository: github.com/open-telemetry/opentelemetry-operator
3939
support: OpenTelemetry Community
@@ -339,7 +339,7 @@ spec:
339339
- --upstream=http://127.0.0.1:8080/
340340
- --logtostderr=true
341341
- --v=0
342-
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.0
342+
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.1
343343
name: kube-rbac-proxy
344344
ports:
345345
- containerPort: 8443

bundle/metadata/annotations.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ annotations:
55
operators.operatorframework.io.bundle.metadata.v1: metadata/
66
operators.operatorframework.io.bundle.package.v1: opentelemetry-operator
77
operators.operatorframework.io.bundle.channels.v1: alpha
8-
operators.operatorframework.io.metrics.builder: operator-sdk-v1.27.0
8+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.29.0
99
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1010
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3
1111

config/default/manager_auth_proxy_patch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
spec:
1111
containers:
1212
- name: kube-rbac-proxy
13-
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.0
13+
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.1
1414
args:
1515
- "--secure-listen-address=0.0.0.0:8443"
1616
- "--upstream=http://127.0.0.1:8080/"

0 commit comments

Comments
 (0)