Azure devops pipeline stages are unable to find the artifacts?

Brass Contributor

Team,

We have 3 stages
1. Build
2. DevTest
3. Production

DevTest is able to found the objects but Production stage is unable to found them. Download artifacts works fine in production stage but after that helm task runs and returns `no objects visited` error.

Build start like this

- stage: 'build'
displayName: 'Kong Custom Images Build'
jobs:
- job: 'build'
displayName: 'Kong Custom Images Build'
steps:
- task:
- task

 

DevTest stage starts like this

- stage: 'DevTest'
displayName: 'Deploy to Dev/Test'
dependsOn: 'build'
jobs:
- job: 'DevTest'
displayName: 'Deploy to Dev/Test'
steps:
- download: current
artifact: values
- task:

Production stage starts like this

- stage: 'Production'
displayName: 'Deploy to Production'
dependsOn: 'DevTest'
jobs:
- deployment: 'Production'
displayName: 'Deploy to Production'
pool:
vmImage: ubuntu-latest
environment: 'Production Cluster'
strategy:
runOnce:
deploy:
steps:
- download: current
artifact: values
- task:

Can anyone suggest something. Thank you.

Regards,
Tanul

0 Replies