Update seeder-user-guide.md #392
Workflow file for this run
This file contains 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: Delete Review App | |
on: | |
pull_request: | |
types: [closed] | |
permissions: | |
id-token: write | |
contents: read | |
concurrency: | |
group: ${{ github.event.pull_request.number }} | |
jobs: | |
check-secret-access: | |
runs-on: ubuntu-latest | |
outputs: | |
allowed: ${{ steps.check-secret.outputs.allowed }} | |
steps: | |
- name: Test for secrets access | |
id: check-secret | |
shell: bash | |
run: | | |
unset allowed | |
if [ "${{ secrets.TEST_SECRETS_ACCESS }}" != '' ]; then | |
echo "allowed=true" >> $GITHUB_OUTPUT; | |
else | |
echo "allowed=false" >> $GITHUB_OUTPUT; | |
fi | |
delete: | |
runs-on: [k8s-public-fmt] | |
container: | |
image: registry.gitlab.com/cmmarslender/kubectl-helm:v3 | |
needs: | |
- check-secret-access | |
if: needs.check-secret-access.outputs.allowed == 'true' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Vault Login | |
uses: Chia-Network/actions/vault/login@main | |
with: | |
vault_url: ${{ secrets.VAULT_URL }} | |
role_name: github-chia-docs | |
- name: Get secrets from vault | |
uses: hashicorp/vault-action@v3 | |
with: | |
url: ${{ secrets.VAULT_URL }} | |
token: ${{ env.VAULT_TOKEN }} | |
secrets: | | |
secret/data/fmt/k8s/k8s-fmt api_server_url | K8S_API_SERVER_URL; | |
- name: Login to k8s cluster | |
uses: Chia-Network/actions/vault/k8s-login@main | |
with: | |
vault_url: ${{ secrets.VAULT_URL }} | |
vault_token: ${{ env.VAULT_TOKEN }} | |
backend_name: k8s-fmt | |
role_name: github-actions | |
cluster_url: ${{ env.K8S_API_SERVER_URL }} | |
- name: Helm Uninstall | |
env: | |
REVIEW_SLUG: ${{ github.event.pull_request.number }} | |
run: | | |
helm uninstall -n "chia-docs" "chia-docs-$REVIEW_SLUG" |