diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-05-22 11:12:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 11:12:46 -0400 |
commit | 896a0c90b34217fab19160ea48c51f926fbcdeed (patch) | |
tree | d16b36399724b54aaf28c6d30c8dfcc3ffbde157 /roles/openshift_hosted/tasks | |
parent | a12646f4e018a65d5633c53209de364d5e8b5cb4 (diff) | |
parent | fddf5ba42e1f1edd0383b465a564cd575002dadb (diff) | |
download | openshift-896a0c90b34217fab19160ea48c51f926fbcdeed.tar.gz openshift-896a0c90b34217fab19160ea48c51f926fbcdeed.tar.bz2 openshift-896a0c90b34217fab19160ea48c51f926fbcdeed.tar.xz openshift-896a0c90b34217fab19160ea48c51f926fbcdeed.zip |
Merge pull request #4228 from etsauer/s3-required-vars
Removing requirement to pass aws credentials
Diffstat (limited to 'roles/openshift_hosted/tasks')
-rw-r--r-- | roles/openshift_hosted/tasks/registry/storage/s3.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/roles/openshift_hosted/tasks/registry/storage/s3.yml b/roles/openshift_hosted/tasks/registry/storage/s3.yml index 26f921f15..318969885 100644 --- a/roles/openshift_hosted/tasks/registry/storage/s3.yml +++ b/roles/openshift_hosted/tasks/registry/storage/s3.yml @@ -2,14 +2,10 @@ - name: Assert that S3 variables are provided for registry_config template assert: that: - - openshift.hosted.registry.storage.s3.accesskey | default(none) is not none - - openshift.hosted.registry.storage.s3.secretkey | default(none) is not none - 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_accesskey - openshift_hosted_registry_storage_s3_secretkey openshift_hosted_registry_storage_s3_bucket openshift_hosted_registry_storage_s3_region |