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:08 | Running DEPLOY |
19-May-2015 10:11:08 | Deployment |
19-May-2015 10:11:08 | VAR not found 'VAR' |
19-May-2015 10:11:08 | Finished task 'RDSmanager -deploy test vars' with result: Success |
19-May-2015 10:11:08 | Finalising the build... |
19-May-2015 10:11:08 | Stopping timer. |
19-May-2015 10:11:08 | Build 1572865-1703937-3178501 completed. |
19-May-2015 10:11:08 | Finished processing deployment result Deployment of 'release-2' on 'DEV' |
What I'm doing wrong here?
Thanks.
Please try bamboo_VAR
Bamboo prefixes all its variables.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.