Skip to content

Commit

Permalink
Upgraded server-side dependencies: Tekton, ASM, Config Connector (#1064)
Browse files Browse the repository at this point in the history
<!-- 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
```
  • Loading branch information
balamut-google authored Nov 30, 2023
2 parents 6da8e18 + fdfe9fe commit b38056a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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.17 >asmcli
curl https://storage.googleapis.com/csm-artifacts/asm/asmcli_1.19 >asmcli
chmod +x asmcli

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

# 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/
# https://github.com/GoogleCloudPlatform/anthos-service-mesh-packages/tree/release-1.19/samples/gateways/istio-ingressgateway
kubectl apply -n asm-gateways -f out/samples/gateways/istio-ingressgateway/
6 changes: 3 additions & 3 deletions pkg/kf/commands/dependencies/dependencies.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func newDependencies() []dependency {
// dep matrix right now is fairly impossible. To ensure we still
// testing against the right version though, we are going to hard
// code this.
ResolveVersion: staticVersionResolver("v0.47.1"),
ResolveVersion: staticVersionResolver("v0.53.2"),
ResolveURL: func(version string) (string, error) {
const URL = "https://github.com/tektoncd/pipeline/releases/download/%s/release.yaml"
return fmt.Sprintf(URL, version), nil
Expand All @@ -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.17.4-asm.2+config1"),
ResolveVersion: staticVersionResolver("1.19.3-asm.4+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 All @@ -132,7 +132,7 @@ func newDependencies() []dependency {
InfoURL: "https://cloud.google.com//config-connector/docs/how-to/advanced-install",
// This version needs to be updated by hand until we have a
// programtic way to fetch it.
ResolveVersion: staticVersionResolver("1.105.0"),
ResolveVersion: staticVersionResolver("1.111.0"),
ResolveURL: func(version string) (string, error) {
const URL = "gs://configconnector-operator/%s/release-bundle.tar.gz"
return fmt.Sprintf(URL, version), nil
Expand Down

0 comments on commit b38056a

Please sign in to comment.