Merge branch 'master' of github.com:DomainDrivenArchitecture/dda-devops-build
This commit is contained in:
commit
fcc55eac5f
3 changed files with 4 additions and 2 deletions
|
@ -18,6 +18,8 @@ dda-devops-build provide a environment to tie several DevOps tools together for
|
||||||
|
|
||||||
# Setup
|
# Setup
|
||||||
|
|
||||||
|
Ensure that yout python3 version is at least Python 3.7!
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo apt install python3-pip
|
sudo apt install python3-pip
|
||||||
pip3 install pip3 --upgrade --user
|
pip3 install pip3 --upgrade --user
|
||||||
|
|
2
build.py
2
build.py
|
@ -28,7 +28,7 @@ use_plugin("python.distutils")
|
||||||
default_task = "publish"
|
default_task = "publish"
|
||||||
|
|
||||||
name = "ddadevops"
|
name = "ddadevops"
|
||||||
version = "0.12.7-dev"
|
version = "0.12.8-dev"
|
||||||
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
||||||
description = __doc__
|
description = __doc__
|
||||||
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
||||||
|
|
|
@ -190,5 +190,5 @@ class DevopsTerraformBuild(DevopsBuild):
|
||||||
|
|
||||||
def print_terraform_command(self, tf):
|
def print_terraform_command(self, tf):
|
||||||
if self.debug_print_terraform_command:
|
if self.debug_print_terraform_command:
|
||||||
output = 'cd ' + self.build_path() + ' && ' + tf.latest_cmd
|
output = 'cd ' + self.build_path() + ' && ' + tf.latest_cmd()
|
||||||
print(output)
|
print(output)
|
||||||
|
|
Loading…
Reference in a new issue