Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ REPO?=tigera/operator
PACKAGE_NAME?=github.com/tigera/operator
LOCAL_USER_ID?=$(shell id -u $$USER)
# The project Go version.
GO_VERSION?=1.25.12
GO_VERSION?=1.25.13
# Version of Kubernetes to use for dependencies, tests, and kubectl.
K8S_VERSION?=v1.35.7
# The version of LLVM to use for the go-build image.
Expand Down Expand Up @@ -256,7 +256,7 @@ endif

# To update the Istio version, see "Updating the bundled version of Istio" in docs/common_tasks.md.
ISTIO_HELM_REPO ?= https://istio-release.storage.googleapis.com/charts
ISTIO_VERSION ?= 1.29.2
ISTIO_VERSION ?= 1.29.6
ISTIO_RESOURCES_DIR = pkg/render/istio
ISTIO_CHARTS = base istiod cni ztunnel
ISTIO_CHART_FILES = $(addprefix $(ISTIO_RESOURCES_DIR)/,$(addsuffix .tgz,$(ISTIO_CHARTS)))
Expand Down
2 changes: 1 addition & 1 deletion api/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/tigera/operator/api

go 1.25.12
go 1.25.13

require (
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.80.1
Expand Down
8 changes: 4 additions & 4 deletions config/enterprise_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ components:
image: tigera/dex
version: v3.22.6
eck-kibana:
version: 8.19.19
version: 8.19.20
kibana:
image: tigera/kibana
version: v3.22.6
eck-elasticsearch:
version: 8.19.19
version: 8.19.20
elasticsearch:
image: tigera/elasticsearch
version: v3.22.6
Expand Down Expand Up @@ -106,14 +106,14 @@ components:
# coreos-prometheus holds the version of prometheus built for tigera/prometheus,
# which prometheus operator uses to validate.
coreos-prometheus:
version: v3.12.0
version: v3.13.2
prometheus:
image: tigera/prometheus
version: v3.22.6
# coreos-prometheus holds the version of alertmanager built for tigera/alertmanager,
# which prometheus operator uses to validate.
coreos-alertmanager:
version: v0.32.1
version: v0.33.1
alertmanager:
image: tigera/alertmanager
version: v3.22.6
Expand Down
8 changes: 4 additions & 4 deletions pkg/components/enterprise.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ var (
}

ComponentEckElasticsearch = Component{
Version: "8.19.19",
Version: "8.19.20",
Registry: "",
}

ComponentEckKibana = Component{
Version: "8.19.19",
Version: "8.19.20",
Registry: "",
}

Expand Down Expand Up @@ -228,7 +228,7 @@ var (
}

ComponentCoreOSPrometheus = Component{
Version: "v3.12.0",
Version: "v3.13.2",
Registry: "",
}

Expand All @@ -245,7 +245,7 @@ var (
}

ComponentCoreOSAlertmanager = Component{
Version: "v0.32.1",
Version: "v0.33.1",
Registry: "",
}

Expand Down
Loading