This release is dentical to 1.10.1; it was created to disprove a coy cop-out from Red Hat Support regarding Ansible Galaxy's API.
- Fix YAML serialization for Ansible versions 7 through 10 (or so)
- Introduce
parse_external_docker_tag
filter (lifted from wp-ops)
- Fix typo
- Fix boneheaded
NameError
- Refactor for future maintainability, might have introduced bugs, although I don't think so
- Support immediate, multi-stage Dockerfiles
- Bugfix: Ansible introduced yet another string wrapper class in its Jinja fixture, which needs a special case passthrough for YAML serialization
- Bugfix:
_openshift.py
file header was defective
- Bugfix: when setting both
from: ~
andstrategy:
→dockerStrategy:
(which might happen e.g. because of awith_items
loop), don't pollute the latter with the former — In other words, ignorefrom:
when not set.
Same except the fix didn't actually work, because of a silly operator precedence issue ☹
- Accept
branch:
ortag:
as aliases forref:
undergit:
dict
- Remove default
dockerStrategy:
→noCache: true
— Meaning that (newly-created) BuildConfig objects will start using the Docker layer cache, as they should
state:
now defaults tolatest
(rather thanpresent
) inopenshift:
andopenshift_imagestream:
tasks
- Fix nevergreen on pod images that get rewritten under the influence of OpenShift triggers
- Support user-specified
openshift_imagestream:
→spec:
(required for e.g. build resource limits)
- Do the right thing for
openshift_imagestream:
stanzas that are mirrors (i.e. with afrom:
line and nothing else)
- Fix
source:
-lessopenshift_imagestream
s. These were supposed to mirror e.g. Docker Hub, but that wasn't happening as experimentation suggests that"referencePolicy": { "type": "Source" }
inhibits"importPolicy": { "scheduled": True }
. Forcibly set"referencePolicy": { "type": "Local" }
for suchopenshift_imagestream
s.
- Top-level
dockerfile:
(just belowopenshift_imagestream:
) is now deprecated; we now prefer asource:
→dockerfile:
structure that mimics the BuildConfig type definition. (The older form is still supported, as is the automagic addition oftype: Dockerfile
if omitted)
- Support “
from:
-less”openshift_imagestream
s (with adockerfile:
but nofrom:
), also when the FROM line in the Dockerfile references a local OpenShift image e.g.FROM docker-registry.default.svc:5000/namespace/name:tag
; in that case, synthesize a properfrom:
block (it being the only way that such a BuildConfig can possibly succeed, owing to considerations of authentication to the OpenShift registry)
First numbered release
- Don't insist on
docker pull
ingFROM
images all the time anymore; we now live in a Docker-Hub-ratelimited world