Skip to content

Commit

Permalink
update: external-dns to v0.14.2 (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroniscode committed Aug 20, 2024
1 parent 70c5132 commit 6371e9c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions cmd/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/awslabs/eksdemo/pkg/application/cilium"
"github.com/awslabs/eksdemo/pkg/application/consul"
"github.com/awslabs/eksdemo/pkg/application/coredumphandler"
"github.com/awslabs/eksdemo/pkg/application/external_dns"
"github.com/awslabs/eksdemo/pkg/application/externaldns"
"github.com/awslabs/eksdemo/pkg/application/falco"
"github.com/awslabs/eksdemo/pkg/application/goldilocks"
"github.com/awslabs/eksdemo/pkg/application/harbor"
Expand Down Expand Up @@ -64,7 +64,7 @@ func NewInstallCmd() *cobra.Command {
cmd.AddCommand(NewInstallExampleCmd())
cmd.AddCommand(NewInstallAliasCmds(exampleApps, "example-")...)
cmd.AddCommand(NewInstallAliasCmds(exampleApps, "ex-")...)
cmd.AddCommand(external_dns.New().NewInstallCmd())
cmd.AddCommand(externaldns.New().NewInstallCmd())
cmd.AddCommand(falco.NewApp().NewInstallCmd())
cmd.AddCommand(NewInstallFluxCmd())
cmd.AddCommand(NewInstallAliasCmds(fluxApps, "flux-")...)
Expand Down
4 changes: 2 additions & 2 deletions cmd/install/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/awslabs/eksdemo/pkg/application/cilium"
"github.com/awslabs/eksdemo/pkg/application/consul"
"github.com/awslabs/eksdemo/pkg/application/coredumphandler"
"github.com/awslabs/eksdemo/pkg/application/external_dns"
"github.com/awslabs/eksdemo/pkg/application/externaldns"
"github.com/awslabs/eksdemo/pkg/application/falco"
"github.com/awslabs/eksdemo/pkg/application/goldilocks"
"github.com/awslabs/eksdemo/pkg/application/harbor"
Expand Down Expand Up @@ -64,7 +64,7 @@ func NewUninstallCmd() *cobra.Command {
cmd.AddCommand(NewUninstallExampleCmd())
cmd.AddCommand(NewUninstallAliasCmds(exampleApps, "example-")...)
cmd.AddCommand(NewUninstallAliasCmds(exampleApps, "ex-")...)
cmd.AddCommand(external_dns.New().NewUninstallCmd())
cmd.AddCommand(externaldns.New().NewUninstallCmd())
cmd.AddCommand(falco.NewApp().NewUninstallCmd())
cmd.AddCommand(NewUninstallFluxCmd())
cmd.AddCommand(NewUninstallAliasCmds(fluxApps, "flux-")...)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package external_dns
package externaldns

import (
"github.com/awslabs/eksdemo/pkg/application"
Expand All @@ -13,7 +13,7 @@ import (
// GitHub: https://github.com/kubernetes-sigs/external-dns
// Helm: https://github.com/kubernetes-sigs/external-dns/tree/master/charts/external-dns
// Repo: registry.k8s.io/external-dns/external-dns
// Version: Latest is Chart 1.13.1, App v0.13.6 (as of 10/2/23)
// Version: Latest is Chart 1.14.5, App v0.14.2 (as of 8/20/24)

func New() *application.Application {
return &application.Application{
Expand All @@ -39,10 +39,10 @@ func New() *application.Application {
Namespace: "external-dns",
ServiceAccount: "external-dns",
DefaultVersion: &application.LatestPrevious{
LatestChart: "1.13.1",
Latest: "v0.13.6",
PreviousChart: "1.12.2",
Previous: "v0.13.4",
LatestChart: "1.14.5",
Latest: "v0.14.2",
PreviousChart: "1.13.1",
Previous: "v0.13.6",
},
},

Expand Down
4 changes: 2 additions & 2 deletions pkg/resource/cluster/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/aws/aws-sdk-go-v2/service/ec2/types"
"github.com/awslabs/eksdemo/pkg/application"
awslbc "github.com/awslabs/eksdemo/pkg/application/aws/lbc"
"github.com/awslabs/eksdemo/pkg/application/external_dns"
"github.com/awslabs/eksdemo/pkg/application/externaldns"
"github.com/awslabs/eksdemo/pkg/application/karpenter"
"github.com/awslabs/eksdemo/pkg/application/storage/ebs_csi"
"github.com/awslabs/eksdemo/pkg/aws"
Expand Down Expand Up @@ -64,7 +64,7 @@ func addOptions(res *resource.Resource) *resource.Resource {
appsForIrsa: []*application.Application{
awslbc.NewApp(),
ebs_csi.NewApp(),
external_dns.New(),
externaldns.New(),
karpenter.NewApp(),
},
IrsaTemplate: &template.TextTemplate{
Expand Down

0 comments on commit 6371e9c

Please sign in to comment.