Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Freeze the cert-manager 1.15 docs #1577

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Oct 3, 2024

  1. Fix the release-process instructions

    Signed-off-by: Richard Wall <[email protected]>
    wallrj committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    0e96aef View commit details
    Browse the repository at this point in the history
  2. Freeze the cert-manager 1.15 docs

    Following the instructions from the release process
    > (final release only) Freeze the docs/ folder by creating a copy , removing the
    > pages from that copy that don't make sense to be versioned, and updating the
    > manifest.json file:
    
    ```bash
    export RELEASE=1.15
    cp -r content/docs content/v${RELEASE}-docs
    rm -rf content/v${RELEASE}-docs/{installation/supported-releases,installation/upgrading,release-notes,contributing}
    sed -i.bak "s|docs/|v${RELEASE}-docs/|g" content/v${RELEASE}-docs/manifest.json
    jq < content/v${RELEASE}-docs/manifest.json >/tmp/manifest \
      'del(.routes[0].routes[] | select(.title | test("Releases|Contributing")))'
    mv /tmp/manifest content/v${RELEASE}-docs/manifest.json
    ```
    
    Signed-off-by: Richard Wall <[email protected]>
    wallrj committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    b7c0d96 View commit details
    Browse the repository at this point in the history