Trigger deployment to test and prod Openshift environnment by Image stream re-tagging and labelling pod #46
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
# Deploy an artifact onto Test, or Prod | |
name: Trigger deployment to test and prod Openshift environnment by Image stream re-tagging and labelling pod | |
on: | |
workflow_dispatch: | |
inputs: | |
app_name: | |
required: true | |
description: App to be deployed | |
type: choice | |
options: | |
- dps-email-poller | |
- dps-email-worker | |
- dps-notification-service | |
- dps-payment-service | |
- dps-validation-service | |
- figaro-validation-service | |
- spd-notification-worker | |
- vips-notification-worker | |
source_image_tag: | |
required: true | |
description: What is the tag that is going to be promoted? | |
type: choice | |
options: | |
- dev | |
- test | |
target_environment: | |
required: true | |
description: What is the targeted environment? | |
type: choice | |
options: | |
- test | |
- prod | |
jobs: | |
promote_image: | |
uses: SierraSystems/reusable-workflows/.github/workflows/openshift-tag-image.yml@main | |
with: | |
image_stream_name: "${{ github.event.inputs.app_name }}" | |
source_image_tag: "${{ github.event.inputs.source_image_tag }}" | |
image_tags: "${{ github.event.inputs.target_environment }}" | |
secrets: | |
openshift_namespace: "${{ secrets.OPENSHIFT_LICENSE_PLATE_SILVER }}-tools" | |
openshift_server_url: "${{ secrets.OPENSHIFT_SERVER_URL_SILVER }}" | |
openshift_token: "${{ secrets.OPENSHIFT_SA_PIPELINE_TOKEN_SILVER }}" | |
openshift_external_repository: "${{ secrets.OPENSHIFT_EXTERNAL_REPOSITORY_SILVER }}" |