Skip to content

Commit

Permalink
avoid kong:3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
programmer04 committed Oct 22, 2024
1 parent b88f9e4 commit 943ee93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/e2e/test_helm_install_upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ func init() {
}

func TestHelmUpgrade(t *testing.T) {
var image = "docker.io/kong/gateway-operator-oss"
const (
// Rel: https://github.com/Kong/charts/tree/main/charts/gateway-operator
chart = "kong/gateway-operator"
image = "docker.io/kong/gateway-operator-oss"

waitTime = 3 * time.Minute
)
Expand Down Expand Up @@ -376,6 +376,9 @@ func TestHelmUpgrade(t *testing.T) {

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
if helpers.GetDefaultDataPlaneBaseImage() == consts.DefaultDataPlaneBaseEnterpriseImage {
image = "docker.io/kong/gateway-operator"
}
var (
tag string
targetRepository = image
Expand Down

0 comments on commit 943ee93

Please sign in to comment.