diff options
author | venkata edara <redara@redhat.com> | 2017-07-31 16:17:49 +0530 |
---|---|---|
committer | venkata edara <redara@redhat.com> | 2017-07-31 16:30:45 +0530 |
commit | f8cde44e7c5a1a42a24e9993f4ebc088082a1deb (patch) | |
tree | 99f32d10e60b28430c53fbe1c81ac219fa0f4657 /gluster-s3object/CentOS/docker-gluster-s3/Dockerfile | |
parent | 4757dd977452d15baae91d46a7895cd3d5b7863e (diff) | |
download | gluster-f8cde44e7c5a1a42a24e9993f4ebc088082a1deb.tar.gz gluster-f8cde44e7c5a1a42a24e9993f4ebc088082a1deb.tar.bz2 gluster-f8cde44e7c5a1a42a24e9993f4ebc088082a1deb.tar.xz gluster-f8cde44e7c5a1a42a24e9993f4ebc088082a1deb.zip |
Added S3 authentication changes
changed the proxy-server.conf to enable authentication and scripts to add user
Signed-off-by: venkata edara <redara@redhat.com>
Diffstat (limited to 'gluster-s3object/CentOS/docker-gluster-s3/Dockerfile')
-rw-r--r-- | gluster-s3object/CentOS/docker-gluster-s3/Dockerfile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gluster-s3object/CentOS/docker-gluster-s3/Dockerfile b/gluster-s3object/CentOS/docker-gluster-s3/Dockerfile index 9ec1e2f..fdfb0ec 100644 --- a/gluster-s3object/CentOS/docker-gluster-s3/Dockerfile +++ b/gluster-s3object/CentOS/docker-gluster-s3/Dockerfile @@ -54,6 +54,7 @@ COPY swift-proxy.service /lib/systemd/system/ COPY swift-account.service /lib/systemd/system/ COPY swift-container.service /lib/systemd/system/ COPY swift-object.service /lib/systemd/system/ +COPY swift-adduser.service /lib/systemd/system/ # Replace openstack swift conf files with local gluster-swift ones COPY etc/swift/* /etc/swift/ @@ -62,6 +63,9 @@ COPY etc/swift/* /etc/swift/ COPY update_gluster_vol.sh /usr/local/bin/update_gluster_vol.sh RUN chmod +x /usr/local/bin/update_gluster_vol.sh +COPY gluster-swift-add-user /usr/local/bin/gluster-swift-add-user +RUN chmod +x /usr/local/bin/gluster-swift-add-user + # volumes to be exposed as object storage is present in swift-volumes file COPY etc/sysconfig/swift-volumes /etc/sysconfig/swift-volumes @@ -76,7 +80,8 @@ systemctl enable memcached.service;\ systemctl enable swift-proxy.service;\ systemctl enable swift-account.service;\ systemctl enable swift-container.service;\ -systemctl enable swift-object.service; +systemctl enable swift-object.service;\ +systemctl enable swift-adduser.service; ENTRYPOINT ["/usr/local/bin/update_gluster_vol.sh"] CMD ["/usr/sbin/init"] |