v0.31.0-alpha.2 #248
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sync Config Schema | |
| on: | |
| release: | |
| types: | |
| - published | |
| workflow_dispatch: | |
| inputs: | |
| releaseTag: | |
| description: 'Release tag in form vX.Y.Z' | |
| required: true | |
| type: string | |
| jobs: | |
| sync: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release_tag: ${{ steps.release.outputs.release_tag }} | |
| is_alpha_version: ${{ steps.release.outputs.is_alpha_version }} # on alpha version we won't sync docs and config | |
| is_stable_version: ${{ steps.release.outputs.is_stable_version }} # on stable versions we will sync config, and CI in vcluster-config will sync docs | |
| steps: | |
| # this is to support both manually trigger workflows, and automatically triggered on release creation | |
| - name: Determine release tag | |
| id: release | |
| env: | |
| MANUAL_TAG: ${{ inputs.releaseTag }} | |
| run: | | |
| if [[ -n "${MANUAL_TAG}" ]]; then | |
| echo "Manually set tag: ${MANUAL_TAG}" | |
| final_tag=${MANUAL_TAG} | |
| else | |
| echo "Tag from release event: ${{ github.event.release.tag_name }}" | |
| final_tag="${{ github.event.release.tag_name }}" | |
| fi | |
| echo "release_tag=${final_tag}" >> "$GITHUB_OUTPUT" | |
| # Remove 'v' prefix if present for semver validation | |
| version_without_v="${final_tag#v}" | |
| echo "version_without_v=${version_without_v}" >> "$GITHUB_OUTPUT" | |
| if [[ "${final_tag}" == *"-alpha."* || "${final_tag}" == *"-next."* ]]; then | |
| echo "is_alpha_version=true" >> "$GITHUB_OUTPUT" | |
| echo "is_stable_version=false" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "is_alpha_version=false" >> "$GITHUB_OUTPUT" | |
| fi | |
| if [[ "${final_tag}" == *"-beta."* || "${final_tag}" == *"-rc"* ]]; then | |
| echo "is_stable_version=false" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "is_stable_version=true" >> "$GITHUB_OUTPUT" | |
| fi | |
| - name: Parse version with semver | |
| if: ${{ steps.release.outputs.is_alpha_version == 'false' }} | |
| id: semver | |
| uses: loft-sh/github-actions/.github/actions/semver-validation@main | |
| with: | |
| version: ${{ steps.release.outputs.version_without_v }} | |
| - name: Skip sync on alpha | |
| if: ${{ steps.release.outputs.is_alpha_version == 'true' }} | |
| env: | |
| RELEASE_TAG: ${{ steps.release.outputs.release_tag }} | |
| run: echo "skipping sync because release ${RELEASE_TAG} is alpha" | |
| - name: Checkout repo | |
| if: ${{ steps.release.outputs.is_alpha_version == 'false' }} | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-tags: 'true' | |
| ref: 'refs/tags/${{ steps.release.outputs.release_tag }}' | |
| - name: Configure git | |
| if: ${{ steps.release.outputs.is_alpha_version == 'false' }} | |
| run: | | |
| git config --global url.https://"$GH_ACCESS_TOKEN"@github.com/.insteadOf https://github.com/ | |
| # set git info | |
| git config --global user.name "Loft Bot" | |
| git config --global user.email '[email protected]' | |
| env: | |
| GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
| - name: Set up Go | |
| if: ${{ steps.release.outputs.is_alpha_version == 'false' }} | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Update docs version on beta or rc versions | |
| # update docs - "main" for beta, versioned folder for RC | |
| if: ${{ steps.release.outputs.is_stable_version == 'false' && steps.release.outputs.is_alpha_version == 'false' }} | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
| RELEASE_TAG: ${{ steps.release.outputs.release_tag }} | |
| PARSED_VERSION: ${{ steps.semver.outputs.parsed_version }} | |
| run: | | |
| # Use parsed version from semver action | |
| MAJOR_VERSION=$(echo "${PARSED_VERSION}" | jq -r '.major') | |
| MINOR_VERSION=$(echo "${PARSED_VERSION}" | jq -r '.minor') | |
| # For RC releases, we use major.minor.0 format for the docs folder | |
| MINOR_VERSION_WITH_PATCH="${MAJOR_VERSION}.${MINOR_VERSION}.0" | |
| echo "Extracted minor version: ${MINOR_VERSION_WITH_PATCH} from tag: ${RELEASE_TAG}" | |
| # Determine target folder - use version folder for RC releases, main for beta | |
| VCLUSTER_CONFIG_BRANCH="main" | |
| if [[ "${RELEASE_TAG}" == *"-rc"* ]]; then | |
| TARGET_VERSION="${MINOR_VERSION_WITH_PATCH}" | |
| echo "RC release detected, using versioned folder: ${TARGET_VERSION}" | |
| VCLUSTER_CONFIG_BRANCH="vcluster-v${MAJOR_VERSION}.${MINOR_VERSION}" | |
| else | |
| TARGET_VERSION="main" | |
| echo "Beta release detected, using main folder" | |
| fi | |
| echo "Using vcluster-config tag: ${VCLUSTER_CONFIG_BRANCH}" | |
| # clone vcluster-config and vcluster-docs | |
| git clone --single-branch https://github.com/loft-sh/vcluster-docs.git | |
| # try to clone the tagged version, if it does not exist, fallback to main | |
| git clone --branch "${VCLUSTER_CONFIG_BRANCH}" --depth 1 https://github.com/loft-sh/vcluster-config.git || git clone --single-branch https://github.com/loft-sh/vcluster-config.git | |
| # generate vcluster.schema.json based on the current platform.schema.json in vcluster-config | |
| # and values.schema.json from alpha / beta release | |
| cp chart/values.schema.json vcluster-config/values.schema.json | |
| cd vcluster-config/ | |
| go mod tidy | |
| go mod vendor | |
| go run ./hack/main.go | |
| # copy generated vcluster.schema.json to the docs | |
| cd ../ | |
| # Check if versioned docs folder exists. If it exists, use it; otherwise use main. | |
| # Versioned folders are created independently by the docs release process. | |
| if [[ -d "vcluster-docs/vcluster_versioned_docs/version-${TARGET_VERSION}" ]]; then | |
| DOCS_VERSION="${TARGET_VERSION}" | |
| OUTPUT_PATH="vcluster_versioned_docs/version-${TARGET_VERSION}/_partials/config" | |
| else | |
| DOCS_VERSION="main" | |
| OUTPUT_PATH="vcluster/_partials/config" | |
| fi | |
| mkdir -p "vcluster-docs/configsrc/vcluster/${DOCS_VERSION}/" | |
| cp config/values.yaml "vcluster-docs/configsrc/vcluster/${DOCS_VERSION}/default_values.yaml" | |
| cp vcluster-config/vcluster.schema.json "vcluster-docs/configsrc/vcluster/${DOCS_VERSION}/vcluster.schema.json" | |
| # generate vCluster partials in docs | |
| cd vcluster-docs/ | |
| branch_name="generate-partials-for-${TARGET_VERSION}" | |
| git switch -c "${branch_name}" | |
| # generate vcluster partials for target version | |
| go mod tidy | |
| go mod vendor | |
| go run hack/vcluster/partials/main.go "configsrc/vcluster/${DOCS_VERSION}" "${OUTPUT_PATH}" | |
| # set git info | |
| git config --global user.name "Loft Bot" | |
| git config --global user.email '[email protected]' | |
| git add --all | |
| # if there are no changes, exit early | |
| if git diff-index --quiet HEAD --; then | |
| exit 0 | |
| fi | |
| echo "Changes detected" | |
| # create a PR in vcluster-docs with generated partials | |
| git commit -m "chore: generate vCluster partials for ${TARGET_VERSION} version based on values.schema.json in vCluster ${RELEASE_TAG}" | |
| git push -u origin -f "${branch_name}" | |
| gh pr close "${branch_name}" --comment "Closing to recreate with updated changes from ${RELEASE_TAG}" || true | |
| gh pr create --fill --head "${branch_name}" | |
| echo "Create PR in vcluster-docs" | |
| - name: Update vcluster schema in vcluster-config | |
| # update only on beta, -rc and stable versions | |
| if: ${{ steps.release.outputs.is_alpha_version == 'false' }} | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
| RELEASE_TAG: ${{ steps.release.outputs.release_tag }} | |
| PARSED_VERSION: ${{ steps.semver.outputs.parsed_version }} | |
| run: | | |
| rm -rf vcluster-config/ || true | |
| git clone https://github.com/loft-sh/vcluster-config.git | |
| # copy generated schema from vcluster chart values to vcluster-config | |
| cp chart/values.schema.json vcluster-config/values.schema.json | |
| cp -R config/. vcluster-config/config/ | |
| cd vcluster-config | |
| # We have to replace our config dependency so that we do not introduce vcluster as a whole as transitive dependecy. | |
| find ./config/legacyconfig -type f -exec sed -i "s#github.com/loft-sh/vcluster/config#github.com/loft-sh/vcluster-config/config#g" {} + | |
| # Align deps, if there have been any relevant changes in vcluster. | |
| go mod tidy | |
| go mod vendor | |
| git add --all | |
| # if there are no changes, exit early | |
| if git diff-index --quiet HEAD --; then | |
| exit 0 | |
| fi | |
| echo "Changes detected" | |
| # Determine the tag to update based on the release version | |
| # Use parsed version from semver action | |
| MAJOR_VERSION=$(echo "${PARSED_VERSION}" | jq -r '.major') | |
| MINOR_VERSION=$(echo "${PARSED_VERSION}" | jq -r '.minor') | |
| # Use the vcluster-vX.Y format for tags | |
| TARGET_TAG="vcluster-v${MAJOR_VERSION}.${MINOR_VERSION}" | |
| # commit changes | |
| git commit -m "chore: sync config/*.go and values.schema.json to vCluster version ${RELEASE_TAG}" | |
| # Update the existing tag to point to the new commit | |
| git tag -f "${TARGET_TAG}" | |
| # push the commit | |
| git push origin HEAD:main | |
| git push -u origin -f "${TARGET_TAG}" | |
| echo "vcluster-config tag ${TARGET_TAG} updated to vCluster version ${RELEASE_TAG}" |