Using varibales from deploy

Arseny Zinchenko May 19, 2015

I' trying setup new deployment system. It will be based on few variables, specified for each ENV in Deployments.

So, I have created new ENV:

 

bmb_deploy_1.png

And added new variable:

bmb_deploy_2.png

Then, I have Python module with simple check:

 

#!/usr/bin/env python

import os

def main():

print('Deployment')

try:
var = os.environ['VAR']
print('VAR found %s' % var)
except KeyError as e:
print('VAR not found %s' % e)

 

And in deploy log I have:

 

19-May-2015 10:11:08Running DEPLOY
19-May-2015 10:11:08Deployment
19-May-2015 10:11:08VAR not found 'VAR'
19-May-2015 10:11:08Finished task 'RDSmanager -deploy test vars' with result: Success
19-May-2015 10:11:08Finalising the build...
19-May-2015 10:11:08Stopping timer.
19-May-2015 10:11:08Build 1572865-1703937-3178501 completed.
19-May-2015 10:11:08Finished processing deployment result Deployment of 'release-2' on 'DEV'

 

What I'm doing wrong here?

Thanks.

1 answer

1 accepted

1 vote
Answer accepted
Marcin Gardias
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 19, 2015

Please try bamboo_VAR

Bamboo prefixes all its variables.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events