diff --git a/cmd/generate-release/scripts/install-asm.bash b/cmd/generate-release/scripts/install-asm.bash index c2fb66747..3bbb84bd5 100755 --- a/cmd/generate-release/scripts/install-asm.bash +++ b/cmd/generate-release/scripts/install-asm.bash @@ -33,7 +33,7 @@ else echo "gcloud CLI is already available, skipping installation" fi -curl https://storage.googleapis.com/csm-artifacts/asm/asmcli_1.16 >asmcli +curl https://storage.googleapis.com/csm-artifacts/asm/asmcli_1.17 >asmcli chmod +x asmcli gcloud container clusters get-credentials "${CLUSTER_NAME}" \ @@ -67,9 +67,9 @@ else kubectl label namespace asm-gateways istio-injection- istio.io/rev="$REVISION" --overwrite fi -# Not everything in theis folder is applicable, some files are only for certain versions of K8s +# Not everything in this folder is applicable, some files(HPA) are only for certain versions of K8s # so a blanket -f won't work: -# https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/tree/1.16.4-asm.2+config1/samples/gateways/istio-ingressgateway +# https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/tree/release-1.17/samples/gateways/istio-ingressgateway kubectl apply -n asm-gateways \ -f out/samples/gateways/istio-ingressgateway/deployment.yaml \ -f out/samples/gateways/istio-ingressgateway/autoscalingv2/autoscaling-v2.yaml \ diff --git a/pkg/kf/commands/dependencies/dependencies.go b/pkg/kf/commands/dependencies/dependencies.go index 696a224f6..c86f8eb87 100644 --- a/pkg/kf/commands/dependencies/dependencies.go +++ b/pkg/kf/commands/dependencies/dependencies.go @@ -120,7 +120,7 @@ func newDependencies() []dependency { InfoURL: "https://cloud.google.com/service-mesh/docs/gke-install-overview", // This version is fetched from the asmcli script. It needs to be // updated by hand until we have a programtic way to fetch it. - ResolveVersion: staticVersionResolver("1.16.4-asm.2+config1"), + ResolveVersion: staticVersionResolver("1.17.4-asm.2+config1"), ResolveURL: func(version string) (string, error) { const URL = "https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/releases/tag/%s" return fmt.Sprintf(URL, version), nil