Initial import

This commit is contained in:
Steve Baker 2018-04-29 20:58:02 -04:00
commit 3aeb7cc78b
5 changed files with 23 additions and 0 deletions

0
README.md Normal file
View File

1
handlers/main.yml Normal file
View File

@ -0,0 +1 @@
---

1
meta/main.yml Normal file
View File

@ -0,0 +1 @@
---

1
tasks/main.yml Normal file
View File

@ -0,0 +1 @@
---

20
vars/main.yml Normal file
View File

@ -0,0 +1,20 @@
# Mandatory fully qualified reference to the source image to be modified
source_image:
# Mandatory path to the directory containing the Dockerfile to modify the image
modify_dir_path:
# String to be appended after the tag to indicate this is a modified version of
# the source image.
modified_append_tag: "-modified-{{lookup('pipe','date +%Y%m%d%H%M%S')}}"
# If set, the modified image will be tagged with this reference. If the purpose
# of the image is not changing, it may be enough to rely on modified_append_tag
# to identify that this is a modified version of the source image.
# modified_append_tag will still be appended to this reference.
modified_image:
# Build-time variables for the image build. The role variables source_image and
# modified_append_tag will be merged with this dict.
modify_buildargs: {}