Deployment #1115
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: Deployment | |
on: # yamllint disable-line rule:truthy | |
workflow_run: | |
workflows: | |
- Build and test | |
branches: | |
- main | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
prepare-env: | |
runs-on: ubuntu-latest | |
outputs: | |
short_sha: ${{ steps.prepare.outputs.short_sha }} | |
steps: | |
- id: prepare | |
run: | | |
echo "short_sha=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT | |
deploy-dev: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} | |
needs: | |
- prepare-env | |
environment: | |
name: dev | |
env: | |
SHORT_SHA: ${{needs.prepare-env.outputs.short_sha}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pip install --user openshift | |
- name: Deploy dev environment | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: playbooks/deploy.yml | |
directory: ./ansible | |
requirements: playbooks/requirements.yml | |
vault_password: ${{secrets.VAULT_PASSWORD}} | |
options: | | |
--extra-vars "operator_pipeline_image_tag=${{ github.sha }} suffix=${{needs.prepare-env.outputs.short_sha}} env=dev" | |
--skip-tags ci,import-index-images | |
--verbose | |
deploy-qa: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }} | |
needs: | |
- prepare-env | |
environment: | |
name: qa | |
env: | |
SHORT_SHA: ${{needs.prepare-env.outputs.short_sha}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pip install --user openshift | |
- name: Deploy qa environment | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: playbooks/deploy.yml | |
directory: ./ansible | |
requirements: playbooks/requirements.yml | |
vault_password: ${{secrets.VAULT_PASSWORD}} | |
options: | | |
--extra-vars "operator_pipeline_image_tag=${{ github.sha }} suffix=${{needs.prepare-env.outputs.short_sha}} env=qa" | |
--skip-tags ci,import-index-images | |
--verbose | |
deploy-stage: | |
runs-on: ubuntu-latest | |
environment: | |
name: stage | |
env: | |
SHORT_SHA: ${{needs.prepare-env.outputs.short_sha}} | |
needs: | |
- prepare-env | |
- deploy-qa | |
- deploy-dev | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pip install --user openshift | |
- name: Deploy stage environment | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: playbooks/deploy.yml | |
directory: ./ansible | |
requirements: playbooks/requirements.yml | |
vault_password: ${{secrets.VAULT_PASSWORD}} | |
options: | | |
--extra-vars "operator_pipeline_image_tag=${{ github.sha }} suffix=${{needs.prepare-env.outputs.short_sha}} env=stage" | |
--skip-tags ci,import-index-images | |
--verbose | |
deploy-prod: | |
runs-on: ubuntu-latest | |
environment: | |
name: prod | |
env: | |
SHORT_SHA: ${{needs.prepare-env.outputs.short_sha}} | |
needs: | |
- prepare-env | |
- deploy-stage | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
pip install --user openshift | |
- name: Deploy prod environment | |
uses: dawidd6/action-ansible-playbook@v2 | |
with: | |
playbook: playbooks/deploy.yml | |
directory: ./ansible | |
requirements: playbooks/requirements.yml | |
vault_password: ${{secrets.VAULT_PASSWORD_PROD}} | |
options: | | |
--extra-vars "operator_pipeline_image_tag=${{ github.sha }} suffix=${{needs.prepare-env.outputs.short_sha}} env=prod" | |
--skip-tags ci,import-index-images | |
--verbose | |
release: | |
name: Github release | |
runs-on: ubuntu-latest | |
permissions: write-all | |
needs: | |
- deploy-prod | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create a GitHub release | |
uses: ncipollo/release-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: Release ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} | |
- name: Log in to Quay.io | |
uses: redhat-actions/podman-login@v1 | |
with: | |
username: ${{ secrets.REGISTRY_USERNAME }} | |
password: ${{ secrets.REGISTRY_PASSWORD }} | |
registry: quay.io | |
- name: Tag image with a release tag | |
run: | | |
podman pull quay.io/redhat-isv/operator-pipelines-images:${{ github.sha }} | |
podman tag quay.io/redhat-isv/operator-pipelines-images:${{ github.sha }} quay.io/redhat-isv/operator-pipelines-images:released | |
podman tag quay.io/redhat-isv/operator-pipelines-images:${{ github.sha }} quay.io/redhat-isv/operator-pipelines-images:${{ steps.tag_version.outputs.new_tag }} | |
podman push quay.io/redhat-isv/operator-pipelines-images:released | |
podman push quay.io/redhat-isv/operator-pipelines-images:${{ steps.tag_version.outputs.new_tag }} |