diff --git a/.github/workflows/pull-request-assigned.yml b/.github/workflows/pull-request-assigned.yml deleted file mode 100644 index 544fc79739..0000000000 --- a/.github/workflows/pull-request-assigned.yml +++ /dev/null @@ -1,26 +0,0 @@ -# -# Copyright (c) 2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Automate pull requests triage - -name: Pull request assigned - -on: - pull_request_target: - types: - - assigned - -jobs: - automate-project-columns: - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@v0.8.3 - with: - project: Reviews - column: In progress - repo-token: ${{ secrets.CHE_BOT_GITHUB_TOKEN }} diff --git a/.github/workflows/pull-request-drafts.yml b/.github/workflows/pull-request-drafts.yml deleted file mode 100644 index 44f11e1805..0000000000 --- a/.github/workflows/pull-request-drafts.yml +++ /dev/null @@ -1,26 +0,0 @@ -# -# Copyright (c) 2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Automate pull requests triage - -name: Pull request opened - -on: - pull_request_target: - types: - - converted_to_draft - -jobs: - automate-project-columns: - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@v0.8.3 - with: - project: Reviews - column: Drafts - repo-token: ${{ secrets.CHE_BOT_GITHUB_TOKEN }} diff --git a/.github/workflows/pull-request-opened.yml b/.github/workflows/pull-request-opened.yml deleted file mode 100644 index 3a1eeb4711..0000000000 --- a/.github/workflows/pull-request-opened.yml +++ /dev/null @@ -1,28 +0,0 @@ -# -# Copyright (c) 2021 Red Hat, Inc. -# This program and the accompanying materials are made -# available under the terms of the Eclipse Public License 2.0 -# which is available at https://www.eclipse.org/legal/epl-2.0/ -# -# SPDX-License-Identifier: EPL-2.0 -# -# Automate pull requests triage - -name: Pull request opened - -on: - pull_request_target: - types: - - opened - - ready_for_review - - unassigned - -jobs: - automate-project-columns: - runs-on: ubuntu-latest - steps: - - uses: alex-page/github-project-automation-plus@v0.8.3 - with: - project: Reviews - column: Triage - repo-token: ${{ secrets.CHE_BOT_GITHUB_TOKEN }} diff --git a/.github/workflows/vale.yml b/.github/workflows/vale.yml index 7a9cce40ac..ce1793745d 100644 --- a/.github/workflows/vale.yml +++ b/.github/workflows/vale.yml @@ -17,6 +17,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + - name: Install Asciidoctor + run: sudo apt-get install -y asciidoctor - name: Vale Linter uses: errata-ai/vale-action@reviewdog with: diff --git a/Containerfile b/Containerfile index 4f781ef01b..879c6c8db0 100644 --- a/Containerfile +++ b/Containerfile @@ -36,7 +36,7 @@ LABEL \ # Install system packages RUN set -x \ && dnf install --assumeyes --quiet dnf-plugins-core \ - && dnf copr enable --assumeyes --quiet mczernek/vale \ + && dnf copr enable --assumeyes --quiet mczernek/vale fedora-40-x86_64 \ && dnf install --assumeyes --quiet \ ShellCheck \ bash \ diff --git a/antora.yml b/antora.yml index 4640f5737a..d8c0820aa6 100644 --- a/antora.yml +++ b/antora.yml @@ -1,8 +1,8 @@ --- name: docs title: Documentation -version: next -prerelease: true +version: 7.94.x +prerelease: false start_page: overview:introduction-to-eclipse-che.adoc nav: - modules/overview/nav.adoc @@ -25,7 +25,7 @@ asciidoc: # for the project che-plugin-registry-directory: che-plugin-registry devworkspace-operator-index-disconnected-install: quay.io/devfile/devworkspace-operator-index:release-digest - devworkspace-operator-version-patch: "0.31.0" + devworkspace-operator-version-patch: "0.31.1" devworkspace: DevWorkspace devworkspace-id: devworkspace docker-cli: docker @@ -98,8 +98,8 @@ asciidoc: prod-upstream: Eclipse Che prod-url: "https://__<che_fqdn>__" prod-ver-major: "7" - prod-ver-patch: "7.93.0" - prod-ver: "7.93" + prod-ver-patch: "7.94.0" + prod-ver: "7.94" prod-workspace: che-ws prod: Eclipse Che prod2: Eclipse Che diff --git a/modules/administration-guide/pages/configuring-network-policies.adoc b/modules/administration-guide/pages/configuring-network-policies.adoc index f9d00300dd..65a2f7ed9d 100644 --- a/modules/administration-guide/pages/configuring-network-policies.adoc +++ b/modules/administration-guide/pages/configuring-network-policies.adoc @@ -84,9 +84,7 @@ metadata: name: allow-from-workspaces-namespaces namespace: {prod-namespace} <1> spec: - podSelector: - matchLabels: - app.kubernetes.io/component: che-gateway <2> + podSelector: {} <2> ingress: - from: - podSelector: {} @@ -98,7 +96,7 @@ spec: ---- <1> The {prod-short} namespace. The default is `{prod-namespace}`. -<2> The `podSelector` only selects che-gateway pods +<2> The empty `podSelector` selects all pods in the {prod-short} namespace. ==== +