Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump external dns to v0.15.0 and go to 1.22.7 #316

Merged
merged 1 commit into from
Dec 6, 2024
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
2 changes: 1 addition & 1 deletion devenv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# convenience dockerfile for unit tests
# run make unit from root
FROM golang:1.20
FROM golang:1.22
RUN mkdir -p /usr/local/kubebuilder/bin
RUN wget -q https://github.com/etcd-io/etcd/releases/download/v3.5.0/etcd-v3.5.0-linux-amd64.tar.gz &&\
tar xzf etcd-v3.5.0-linux-amd64.tar.gz &&\
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Azure/aks-app-routing-operator

go 1.22
go 1.22.7

require (
github.com/Azure/go-autorest/autorest v0.11.29
Expand Down
2 changes: 1 addition & 1 deletion pkg/manifests/external_dns.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ func newExternalDNSDeployment(conf *config.Config, externalDnsConfig *ExternalDn
ServiceAccountName: externalDnsConfig.Provider.ResourceName(),
Containers: []corev1.Container{*withLivenessProbeMatchingReadiness(withTypicalReadinessProbe(7979, &corev1.Container{
Name: "controller",
Image: path.Join(conf.Registry, "/oss/kubernetes/external-dns:v0.13.6"),
Image: path.Join(conf.Registry, "/oss/v2/kubernetes/external-dns:v0.15.0"),
Args: append([]string{
"--provider=" + externalDnsConfig.Provider.String(),
"--source=ingress",
Expand Down
4 changes: 2 additions & 2 deletions pkg/manifests/fixtures/external_dns/full.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"containers": [
{
"name": "controller",
"image": "/oss/kubernetes/external-dns:v0.13.6",
"image": "/oss/v2/kubernetes/external-dns:v0.15.0",
"args": [
"--provider=azure",
"--source=ingress",
Expand Down Expand Up @@ -439,7 +439,7 @@
"containers": [
{
"name": "controller",
"image": "/oss/kubernetes/external-dns:v0.13.6",
"image": "/oss/v2/kubernetes/external-dns:v0.15.0",
"args": [
"--provider=azure-private-dns",
"--source=ingress",
Expand Down
2 changes: 1 addition & 1 deletion pkg/manifests/fixtures/external_dns/no-ownership.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"containers": [
{
"name": "controller",
"image": "/oss/kubernetes/external-dns:v0.13.6",
"image": "/oss/v2/kubernetes/external-dns:v0.15.0",
"args": [
"--provider=azure",
"--source=ingress",
Expand Down
2 changes: 1 addition & 1 deletion pkg/manifests/fixtures/external_dns/private.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"containers": [
{
"name": "controller",
"image": "/oss/kubernetes/external-dns:v0.13.6",
"image": "/oss/v2/kubernetes/external-dns:v0.15.0",
"args": [
"--provider=azure-private-dns",
"--source=ingress",
Expand Down
4 changes: 2 additions & 2 deletions pkg/manifests/fixtures/external_dns/short-sync-interval.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
"containers": [
{
"name": "controller",
"image": "/oss/kubernetes/external-dns:v0.13.6",
"image": "/oss/v2/kubernetes/external-dns:v0.15.0",
"args": [
"--provider=azure",
"--source=ingress",
Expand Down Expand Up @@ -439,7 +439,7 @@
"containers": [
{
"name": "controller",
"image": "/oss/kubernetes/external-dns:v0.13.6",
"image": "/oss/v2/kubernetes/external-dns:v0.15.0",
"args": [
"--provider=azure-private-dns",
"--source=ingress",
Expand Down
4 changes: 1 addition & 3 deletions testing/e2e/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/Azure/aks-app-routing-operator/testing/e2e

go 1.22

toolchain go1.22.3
go 1.22.7

require (
github.com/Azure/aks-app-routing-operator v0.0.3
Expand Down