Skip to content

Commit

Permalink
set kyma version (#1222)
Browse files Browse the repository at this point in the history
* set kyma version

* added missing docs
  • Loading branch information
a-thaler authored Mar 25, 2022
1 parent c716e6f commit c89e149
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/gen-docs/kyma_deploy.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ kyma deploy [flags]
- Deploy a specific branch of the Kyma repository on kyma-project.org: "kyma deploy --source=<my-branch-name>"
- 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.1.0")
--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.
Expand Down
2 changes: 1 addition & 1 deletion docs/gen-docs/kyma_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ kyma install [flags]
- To use a commit, write "kyma install --source=34edf09a".
- To use a pull request, write "kyma install --source=PR-9486" (only works if '/resources' is modified).
- To use the local sources, write "kyma install --source=local".
- To use a custom installer image, write "kyma install --source=user/my-kyma-installer:v1.4.0". (default "1.24.9")
- To use a custom installer image, write "kyma install --source=user/my-kyma-installer:v1.4.0". (default "1.24.11")
--src-path string Absolute path to local sources.
--timeout duration Timeout after which CLI stops watching the installation progress. (default 1h0m0s)
--tls-cert string TLS certificate for the domain used for installation. The certificate must be a base64-encoded value.
Expand Down
2 changes: 1 addition & 1 deletion docs/gen-docs/kyma_upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ kyma upgrade [flags]
- To use the main branch, write "kyma install --source=main".
- To use a commit, write "kyma upgrade --source=34edf09a".
- To use the local sources, write "kyma upgrade --source=local".
- To use a custom installer image, write "kyma upgrade --source=user/my-kyma-installer:v1.4.0". (default "1.24.9")
- To use a custom installer image, write "kyma upgrade --source=user/my-kyma-installer:v1.4.0". (default "1.24.11")
--src-path string Absolute path to local sources.
--timeout duration Timeout after which CLI stops watching the upgrade progress. (default 1h0m0s)
--tls-cert string TLS certificate for the domain used for the upgrade. The certificate must be a base64-encoded value.
Expand Down
4 changes: 2 additions & 2 deletions internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
package config

const (
DefaultKyma1Version = "1.24.9"
DefaultKyma2Version = "main"
DefaultKyma1Version = "1.24.11"
DefaultKyma2Version = "2.1.0"
)

0 comments on commit c89e149

Please sign in to comment.