Fixed indentation

This commit is contained in:
Tim McCarthy 2020-02-13 22:23:36 -06:00
parent e956c0be4b
commit a1334d3b30

View File

@ -14,18 +14,18 @@ stages:
- job: Configuration - job: Configuration
pool: pool:
vmImage: 'windows-latest' vmImage: 'windows-latest'
steps: steps:
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
displayName: 'Download Artifacts' displayName: 'Download Artifacts'
inputs: inputs:
pipeline: BasketApiBuild pipeline: BasketApiBuild
- task: redhat.openshift-vsts.oc-setup-task.oc-setup@2 - task: redhat.openshift-vsts.oc-setup-task.oc-setup@2
displayName: 'Setup Openshift CLI' displayName: 'Setup Openshift CLI'
inputs: inputs:
openshiftService: $(OpenShiftServiceConnection) openshiftService: $(OpenShiftServiceConnection)
- script: 'oc project $(OpenShiftProject)' - script: 'oc project $(OpenShiftProject)'
failOnStderr: true failOnStderr: true
displayName: 'Set OpenShift Project Context' displayName: 'Set OpenShift Project Context'
- script: 'oc process -f $(Pipeline.Workspace)/openshift-webapp-deploy-template.yml -p APPLICATION_NAME=$(AppName) | oc apply -f-' - script: 'oc process -f $(Pipeline.Workspace)/openshift-webapp-deploy-template.yml -p APPLICATION_NAME=$(AppName) | oc apply -f-'
failOnStderr: true failOnStderr: true
displayName: 'Ensure OpenShift DeploymentConfig and Service' displayName: 'Ensure OpenShift DeploymentConfig and Service'