eShopOnContainers/deploy/aro/basket-api/azure-pipelines.yml
2020-02-13 22:09:52 -06:00

30 lines
1.0 KiB
YAML

variables:
AppName: basketapi
OpenShiftServiceConnection: 'OpenShift on ARO'
resources:
pipelines:
- pipeline: BasketApiBuild
source: Basket-API-Build
stages:
- stage: development
displayName: Development
variables:
OpenShiftProject: development
jobs:
- job: Configuration
pool:
vmImage: 'windows-latest'
steps:
- task: DownloadPipelineArtifact@2
inputs:
pipeline: BasketApiBuild
- task: redhat.openshift-vsts.oc-setup-task.oc-setup@2
displayName: 'Setup Openshift CLI'
inputs:
openshiftService: $(OpenShiftServiceConnection)
- script: 'oc project $(OpenShiftProject)'
failOnStderr: true
displayName: 'Set OpenShift Project Context'
- script: 'oc process -f $(Pipeline.Workspace)/openshift-webapp-deploy-template.yml -p APPLICATION_NAME=$(AppName) | oc apply -f-'
failOnStderr: true
displayName: 'Ensure OpenShift DeploymentConfig and Service'