File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ LICENSEI_VERSION = 0.9.0
1919
2020# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
2121ENVTEST_K8S_VERSION = 1.32.0
22- ENVTEST_OTEL_OPERATOR_VERSION =v0.120.0
22+ ENVTEST_OTEL_OPERATOR_VERSION =0.129.1
23+ CERT_MANAGER_VERSION = 1.18.2
2324
2425BIN := ${PWD}/bin
2526
@@ -186,8 +187,8 @@ endif
186187
187188.PHONY : install-deps
188189install-deps : # # Install dependencies into the actual K8s cluster
189- kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.16.2 /cert-manager.yaml
190- kubectl apply -f https://github.com/open-telemetry/opentelemetry-operator/releases/download/v0.112.0 /opentelemetry-operator.yaml
190+ kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v $( CERT_MANAGER_VERSION ) /cert-manager.yaml
191+ kubectl apply -f https://github.com/open-telemetry/opentelemetry-operator/releases/download/v $( ENVTEST_OTEL_OPERATOR_VERSION ) /opentelemetry-operator.yaml
191192
192193.PHONY : install
193194install : manifests kustomize # # Install CRDs into the K8s cluster specified in ~/.kube/config.
@@ -236,7 +237,7 @@ $(CONTROLLER_GEN): $(LOCALBIN)
236237
237238# Download CRDs for envtest
238239crddir/github.com/open-telemetry/opentelemetry-operator :
239- git clone --depth 1 --branch ${ENVTEST_OTEL_OPERATOR_VERSION} https://github.com/open-telemetry/opentelemetry-operator.git crddir/github.com/open-telemetry/opentelemetry-operator
240+ git clone --depth 1 --branch v ${ENVTEST_OTEL_OPERATOR_VERSION} https://github.com/open-telemetry/opentelemetry-operator.git crddir/github.com/open-telemetry/opentelemetry-operator
240241
241242.PHONY : envtest
242243envtest : $(ENVTEST ) crddir/github.com/open-telemetry/opentelemetry-operator # # Download envtest-setup locally if necessary.
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ import (
4343
4444const (
4545 otelCollectorKind = "OpenTelemetryCollector"
46- axoflowOtelCollectorImageRef = "ghcr.io/axoflow/axoflow-otel-collector/axoflow-otel-collector:0.120.0-axoflow.6 "
46+ axoflowOtelCollectorImageRef = "ghcr.io/axoflow/axoflow-otel-collector/axoflow-otel-collector:0.120.0-axoflow.28 "
4747)
4848
4949var (
Original file line number Diff line number Diff line change @@ -334,8 +334,7 @@ func assembleAdditionalArgs(otelConfig *otelv1beta1.Config) map[string]string {
334334 flattenDataKey = "flatten_data"
335335 )
336336 const (
337- flattenLogsFeatureGateValue = "transform.flatten.logs"
338- telemetryDisableAddressFieldForInternalTelemetry = "telemetry.disableAddressFieldForInternalTelemetry"
337+ flattenLogsFeatureGateValue = "transform.flatten.logs"
339338 )
340339
341340 type enableConstraint func () bool
@@ -349,9 +348,6 @@ func assembleAdditionalArgs(otelConfig *otelv1beta1.Config) map[string]string {
349348 }
350349 return false
351350 },
352- telemetryDisableAddressFieldForInternalTelemetry : func () bool {
353- return true
354- },
355351 }
356352
357353 var enabledFeatureGates []string
You can’t perform that action at this time.
0 commit comments