This is an automated email from the ASF dual-hosted git repository. gyfora pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
commit 649d46850c99ae2fa11e5506ae177074cd3f6ba2 Author: Gyula Fora <g_f...@apple.com> AuthorDate: Thu May 11 13:45:58 2023 +0200 [release] Update doc and CI config for release --- .asf.yaml | 1 + .github/workflows/docs.yaml | 6 +++--- docs/config.toml | 4 ++-- docs/content/docs/operations/upgrade.md | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index 0978f111..c1ce1937 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -15,6 +15,7 @@ github: release-1.2: {} release-1.3: {} release-1.4: {} + release-1.5: {} notifications: diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index b38f5bcf..35fd8a0e 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -28,8 +28,8 @@ jobs: matrix: branch: - main - - release-1.3 - release-1.4 + - release-1.5 steps: - uses: actions/checkout@v3 with: @@ -41,8 +41,8 @@ jobs: echo "flink_branch=${currentBranch}" echo "flink_branch=${currentBranch}" >> ${GITHUB_ENV} if [ "${currentBranch}" = "main" ]; then - echo "flink_alias=release-1.5" >> ${GITHUB_ENV} - elif [ "${currentBranch}" = "release-1.4" ]; then + echo "flink_alias=release-1.6" >> ${GITHUB_ENV} + elif [ "${currentBranch}" = "release-1.5" ]; then echo "flink_alias=stable" >> ${GITHUB_ENV} else echo "flink_alias=${currentBranch}" >> ${GITHUB_ENV} diff --git a/docs/config.toml b/docs/config.toml index 0d504311..e80146d0 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -63,8 +63,8 @@ pygmentsUseClasses = true ] PreviousDocs = [ - ["1.4", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.4"], - ["1.3", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.3"] + ["1.5", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.5"], + ["1.4", "https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.4"] ] [markup] diff --git a/docs/content/docs/operations/upgrade.md b/docs/content/docs/operations/upgrade.md index 2976c402..3b570a39 100644 --- a/docs/content/docs/operations/upgrade.md +++ b/docs/content/docs/operations/upgrade.md @@ -114,7 +114,7 @@ Here is a reference example of upgrading a `basic-checkpoint-ha-example` deploym ```sh kubectl patch flinkdeployment/basic-checkpoint-ha-example --type=merge -p '{"spec": {"job": {"state": "suspended", "upgradeMode": "savepoint"}}}' ``` - Verify `deploy/basic-checkpoint-ha-example` has terminated and `flinkdeployment/basic-checkpoint-ha-example` has the Last Savepoint Location similar to `file:/flink-data/savepoints/savepoint-000000-aec3dd08e76d/_metadata`. This file will used to restore the job. See [stateful and stateless application upgrade]({{< ref "docs/custom-resource/job-management/#stateful-and-stateless-application-upgrades" >}}) for more detail. + Verify `deploy/basic-checkpoint-ha-example` has terminated and `flinkdeployment/basic-checkpoint-ha-example` has the Last Savepoint Location similar to `file:/flink-data/savepoints/savepoint-000000-aec3dd08e76d/_metadata`. This file will used to restore the job. See [stateful and stateless application upgrade]({{< ref "docs/custom-resource/job-management" >}}) for more detail. 2. Delete the job: ```sh