Cloud Demo Environment De-Provisioning #286
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: Cloud Demo Environment De-Provisioning | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
description: 'User alias or LD env key' | |
required: true | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: us-east-1 | |
KUBE_CONFIG_DATA: ${{ secrets.KUBE_CONFIG_DATA }} | |
ECR_REPOSITORY: ld-core-demo | |
KUBECTL_VERSION: "v1.23.0" | |
DEMO_NAMESPACE: ${{ github.event.inputs.name }} | |
jobs: | |
deploy-to-demoenv: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install LaunchDarkly CLI | |
run: npm install -g @launchdarkly/ldcli | |
- name: Set LaunchDarkly Demo Engineering Account CLI Config | |
run: | | |
echo "Setting up LaunchDarkly CLI for Demo Engineering Account" | |
ldcli config --set access-token ${{ secrets.LD_EAP_API_KEY }} | |
- name: Remove Demo Environment from Demo Engineering Account for ${{ env.DEMO_NAMESPACE }} | |
run: | | |
ldcli projects delete --project ${{ env.DEMO_NAMESPACE }}-ld-demo | |
- name: Check Namespace in Kubernetes | |
uses: kodermax/kubectl-aws-eks@master | |
with: | |
args: get namespace ${{ env.DEMO_NAMESPACE }} &>/dev/null && echo "namespace_exists=true" >> $GITHUB_ENV || echo "namespace_exists=false" >> $GITHUB_ENV | |
- name: Delete Kubernetes Namespace | |
if: env.namespace_exists == 'true' | |
uses: kodermax/kubectl-aws-eks@master | |
with: | |
args: delete namespace ${{ env.DEMO_NAMESPACE }} | |