From 053c3e65077cadc7b3f31cf1687ecafb689457ca Mon Sep 17 00:00:00 2001 From: Xin Ruan Date: Mon, 2 Oct 2023 10:11:26 +0200 Subject: [PATCH] update defaul kyma to 2.19.0 --- docs/gen-docs/kyma_deploy.md | 2 +- internal/config/config.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/gen-docs/kyma_deploy.md b/docs/gen-docs/kyma_deploy.md index 128d136ef..47c8e530e 100644 --- a/docs/gen-docs/kyma_deploy.md +++ b/docs/gen-docs/kyma_deploy.md @@ -28,7 +28,7 @@ kyma deploy [flags] - Deploy a specific branch of the Kyma repository on kyma-project.org: "kyma deploy --source=" - Deploy a commit (8 characters or more), for example: "kyma deploy --source=34edf09a" - Deploy a pull request, for example "kyma deploy --source=PR-9486" - - Deploy the local sources: "kyma deploy --source=local" (default "main") + - Deploy the local sources: "kyma deploy --source=local" (default "2.19.0") -t, --timeout duration Maximum time for the deployment. (default 20m0s) --tls-crt string TLS certificate file for the domain used for installation. --tls-key string TLS key file for the domain used for installation. diff --git a/internal/config/config.go b/internal/config/config.go index c5e2f7a19..19185f9f8 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -6,5 +6,5 @@ package config const ( - DefaultKyma2Version = "main" + DefaultKyma2Version = "2.19.0" )