summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/tasks/registry/storage/s3.yml
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-08-31 18:01:56 -0400
committerMichael Gugino <mgugino@redhat.com>2017-09-25 09:40:01 -0400
commit82d61ae9e23c2ae1f722ed3b458a6e39721e71fd (patch)
tree54b79f1033aa3d210597e285e1346239ce7fad86 /roles/openshift_hosted/tasks/registry/storage/s3.yml
parentc390d382a2c1783964179490eec810ee2206fa32 (diff)
downloadopenshift-82d61ae9e23c2ae1f722ed3b458a6e39721e71fd.tar.gz
openshift-82d61ae9e23c2ae1f722ed3b458a6e39721e71fd.tar.bz2
openshift-82d61ae9e23c2ae1f722ed3b458a6e39721e71fd.tar.xz
openshift-82d61ae9e23c2ae1f722ed3b458a6e39721e71fd.zip
Refactor openshift_hosted plays and role
Currently, openshift_hosted role duplicates some logic across separate task chains. This commit cleans up the openshift_hosted role and converts it to be primarily used with include_role to give better logic to the playbooks that utilize this role. This commit also refactors the playbook that calls various openshift_hosted roles into individual playbooks. This allows more granularity for advanced users.
Diffstat (limited to 'roles/openshift_hosted/tasks/registry/storage/s3.yml')
-rw-r--r--roles/openshift_hosted/tasks/registry/storage/s3.yml45
1 files changed, 0 insertions, 45 deletions
diff --git a/roles/openshift_hosted/tasks/registry/storage/s3.yml b/roles/openshift_hosted/tasks/registry/storage/s3.yml
deleted file mode 100644
index 318969885..000000000
--- a/roles/openshift_hosted/tasks/registry/storage/s3.yml
+++ /dev/null
@@ -1,45 +0,0 @@
----
-- name: Assert that S3 variables are provided for registry_config template
- assert:
- that:
- - openshift.hosted.registry.storage.s3.bucket | default(none) is not none
- - openshift.hosted.registry.storage.s3.region | default(none) is not none
- msg: |
- When using S3 storage, the following variables are required:
- openshift_hosted_registry_storage_s3_bucket
- openshift_hosted_registry_storage_s3_region
-
-- name: If cloudfront is being used, assert that we have all the required variables
- assert:
- that:
- - "openshift_hosted_registry_storage_s3_cloudfront_privatekeyfile | default(none) is not none"
- - "openshift_hosted_registry_storage_s3_cloudfront_keypairid | default(none) is not none"
- msg: |
- When openshift_hosted_registry_storage_s3_cloudfront_baseurl is provided
- openshift_hosted_registry_storage_s3_cloudfront_keypairid and
- openshift_hosted_registry_storage_s3_cloudfront_privatekeyfile are required
- when: openshift_hosted_registry_storage_s3_cloudfront_baseurl is defined
-
-# Inject the cloudfront private key as a secret when required
-- block:
-
- - name: Create registry secret for cloudfront
- oc_secret:
- state: present
- namespace: "{{ openshift_hosted_registry_namespace }}"
- name: docker-registry-s3-cloudfront
- contents:
- - path: cloudfront.pem
- data: "{{ lookup('file', openshift_hosted_registry_storage_s3_cloudfront_privatekeyfile) }}"
-
- - name: Append cloudfront secret registry volume to openshift_hosted_registry_volumes
- set_fact:
- openshift_hosted_registry_volumes: "{{ openshift_hosted_registry_volumes | union(s3_volume_mount) }}"
- vars:
- s3_volume_mount:
- - name: cloudfront-vol
- path: /etc/origin
- type: secret
- secret_name: docker-registry-s3-cloudfront
-
- when: openshift_hosted_registry_storage_s3_cloudfront_baseurl | default(none) is not none