Skip to content

Commit

Permalink
bump ASM version to 1.17 (#1030)
Browse files Browse the repository at this point in the history
  • Loading branch information
guangyw authored Jul 21, 2023
1 parent 304fe55 commit f07f065
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmd/generate-release/scripts/install-asm.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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}" \
Expand Down Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion pkg/kf/commands/dependencies/dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f07f065

Please sign in to comment.