Skip to content

Commit

Permalink
chore: bump GKE test version
Browse files Browse the repository at this point in the history
  • Loading branch information
rainest committed Jul 14, 2022
1 parent c631315 commit cd649e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/e2e/gke_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func TestGKECluster(t *testing.T) {

t.Logf("configuring the GKE cluster PROJECT=(%s) LOCATION=(%s)", gkeProject, gkeLocation)
builder := gke.NewBuilder([]byte(gkeCreds), gkeProject, gkeLocation)
builder.WithClusterMinorVersion(1, 19)
builder.WithClusterMinorVersion(1, 23)

t.Logf("building cluster %s (this can take some time)", builder.Name)
cluster, err := builder.Build(ctx)
Expand Down Expand Up @@ -97,7 +97,7 @@ func TestGKECluster(t *testing.T) {
kubernetesVersion, err := env.Cluster().Version()
require.NoError(t, err)
require.Equal(t, uint64(1), kubernetesVersion.Major)
require.Equal(t, uint64(19), kubernetesVersion.Minor)
require.Equal(t, uint64(23), kubernetesVersion.Minor)

t.Log("verifying that the kong addon deployed both proxy and controller")
kongAddon, err := env.Cluster().GetAddon("kong")
Expand Down

0 comments on commit cd649e9

Please sign in to comment.