summaryrefslogtreecommitdiffstats
path: root/roles/openshift_resource/tasks/template.yml
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2020-01-26 02:48:45 +0100
committerSuren A. Chilingaryan <csa@suren.me>2020-01-26 02:48:45 +0100
commitff3cbb6ee9aeac44a329c8eee505f60144d44b48 (patch)
tree1adf23b583fee2d7bd5aae400774c6ccf8085b19 /roles/openshift_resource/tasks/template.yml
parent1e8153c2af051ce48d5aa08d3dbdc0d0970ea532 (diff)
downloadands-ff3cbb6ee9aeac44a329c8eee505f60144d44b48.tar.gz
ands-ff3cbb6ee9aeac44a329c8eee505f60144d44b48.tar.bz2
ands-ff3cbb6ee9aeac44a329c8eee505f60144d44b48.tar.xz
ands-ff3cbb6ee9aeac44a329c8eee505f60144d44b48.zip
Create missing OpenShift resources when policy is 'replace'. Due to the bug previously, previously only existing resources were replaced, but no new resource was created without reporting a error (for instance the new StatefulSet were not created).
Diffstat (limited to 'roles/openshift_resource/tasks/template.yml')
-rw-r--r--roles/openshift_resource/tasks/template.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/openshift_resource/tasks/template.yml b/roles/openshift_resource/tasks/template.yml
index f43b0f2..f593544 100644
--- a/roles/openshift_resource/tasks/template.yml
+++ b/roles/openshift_resource/tasks/template.yml
@@ -30,4 +30,12 @@
- (recreate | default(false)) or (replace | default(false)) or (results | changed)
- resources | length > 0
+# Replace will not create missing resources. We need to create here.
+ - name: "{{ template }}: Populate missing resources to {{project}} ({{ replace | default(false) | ternary('replace', 'create') }})"
+ shell: "oc process -n {{project}} -f '{{ template_path }}/{{template}}' {{ template_args | default('') }} | oc create -n {{project}} -f - {{ create_args | default('') }}"
+ when:
+ - (replace | default(false)) and (results | changed)
+ - resources | length > 0
+
+
run_once: true