Skip to content

Commit b38056a

Browse files
Upgraded server-side dependencies: Tekton, ASM, Config Connector (#1064)
<!-- Include the issue number below --> ## Proposed Changes * Upgraded dependencies - Tekton to 0.53.2, ASM to 1.19 and Config Connector to 1.111 ## Release Notes ```release-note CHANGED Server-side dependencies - Tekton to 0.53.2, ASM to 1.19 and Config Connector to 1.111 ```
2 parents 6da8e18 + fdfe9fe commit b38056a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

cmd/generate-release/scripts/install-asm.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ else
3333
echo "gcloud CLI is already available, skipping installation"
3434
fi
3535

36-
curl https://storage.googleapis.com/csm-artifacts/asm/asmcli_1.17 >asmcli
36+
curl https://storage.googleapis.com/csm-artifacts/asm/asmcli_1.19 >asmcli
3737
chmod +x asmcli
3838

3939
gcloud container clusters get-credentials "${CLUSTER_NAME}" \
@@ -67,5 +67,5 @@ else
6767
kubectl label namespace asm-gateways istio-injection- istio.io/rev="$REVISION" --overwrite
6868
fi
6969

70-
# https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/tree/release-1.17/samples/gateways/istio-ingressgateway
71-
kubectl apply -n asm-gateways -f out/samples/gateways/istio-ingressgateway/
70+
# https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/tree/release-1.19/samples/gateways/istio-ingressgateway
71+
kubectl apply -n asm-gateways -f out/samples/gateways/istio-ingressgateway/

pkg/kf/commands/dependencies/dependencies.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ func newDependencies() []dependency {
108108
// dep matrix right now is fairly impossible. To ensure we still
109109
// testing against the right version though, we are going to hard
110110
// code this.
111-
ResolveVersion: staticVersionResolver("v0.47.1"),
111+
ResolveVersion: staticVersionResolver("v0.53.2"),
112112
ResolveURL: func(version string) (string, error) {
113113
const URL = "https://github.com/tektoncd/pipeline/releases/download/%s/release.yaml"
114114
return fmt.Sprintf(URL, version), nil
@@ -120,7 +120,7 @@ func newDependencies() []dependency {
120120
InfoURL: "https://cloud.google.com/service-mesh/docs/gke-install-overview",
121121
// This version is fetched from the asmcli script. It needs to be
122122
// updated by hand until we have a programtic way to fetch it.
123-
ResolveVersion: staticVersionResolver("1.17.4-asm.2+config1"),
123+
ResolveVersion: staticVersionResolver("1.19.3-asm.4+config1"),
124124
ResolveURL: func(version string) (string, error) {
125125
const URL = "https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/releases/tag/%s"
126126
return fmt.Sprintf(URL, version), nil
@@ -132,7 +132,7 @@ func newDependencies() []dependency {
132132
InfoURL: "https://cloud.google.com//config-connector/docs/how-to/advanced-install",
133133
// This version needs to be updated by hand until we have a
134134
// programtic way to fetch it.
135-
ResolveVersion: staticVersionResolver("1.105.0"),
135+
ResolveVersion: staticVersionResolver("1.111.0"),
136136
ResolveURL: func(version string) (string, error) {
137137
const URL = "gs://configconnector-operator/%s/release-bundle.tar.gz"
138138
return fmt.Sprintf(URL, version), nil

0 commit comments

Comments
 (0)