This is an automated email from the ASF dual-hosted git repository. gyfora pushed a commit to branch release-1.5 in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
commit fc0b7cc413b884425d76b247596c2bf60be1178a Author: Gyula Fora <g_f...@apple.com> AuthorDate: Thu May 11 13:35:26 2023 +0200 [release] Update docs config for release --- docs/config.toml | 12 ++++++------ docs/content/docs/operations/upgrade.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/config.toml b/docs/config.toml index 60eca946..1f52bd7e 100644 --- a/docs/config.toml +++ b/docs/config.toml @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -baseURL = '//nightlies.apache.org/flink/flink-kubernetes-operator-docs-main' +baseURL = '//nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.5' languageCode = 'en-us' title = 'Apache Flink Kubernetes Operator' enableGitInfo = false @@ -24,7 +24,7 @@ pygmentsUseClasses = true [params] # Flag whether this is a stable version or not. # Used for the quickstart page. - IsStable = false + IsStable = true # Flag to indicate whether an outdated warning should be shown. ShowOutDatedWarning = false @@ -34,14 +34,14 @@ pygmentsUseClasses = true # we change the version for the complete docs when forking of a release branch # etc. # The full version string as referenced in Maven (e.g. 1.2.1) - Version = "1.5-SNAPSHOT" + Version = "1.5.0" # For stable releases, leave the bugfix version out (e.g. 1.2). For snapshot # release this should be the same as the regular version - VersionTitle = "1.5-SNAPSHOT" + VersionTitle = "1.5" # The branch for this version of the Apache Flink Kubernetes Operator - Branch = "main" + Branch = "release-1.5" # The github repository for the Apache Flink Kubernetes Operator Repo = "//github.com/apache/flink-kubernetes-operator" @@ -59,7 +59,7 @@ pygmentsUseClasses = true # of the menu MenuLinks = [ ["Project Homepage", "//flink.apache.org"], - ["JavaDocs", "//nightlies.apache.org/flink/flink-kubernetes-operator-docs-main/api/java/"] + ["JavaDocs", "//nightlies.apache.org/flink/flink-kubernetes-operator-docs-release-1.5/api/java/"] ] PreviousDocs = [ 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