Skip to content

Commit 8e484a6

Browse files
committed
docs(managing_deis): add OpenStack Swift store example
1 parent b60b8f9 commit 8e484a6

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

docs/managing_deis/running-deis-without-ceph.rst

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,9 @@ than the :ref:`logger` component.
116116
Configure registry
117117
^^^^^^^^^^^^^^^^^^
118118

119-
The :ref:`registry` component won't start until it's configured with an S3 store.
119+
The :ref:`registry` component won't start until it's configured with a store.
120+
121+
S3 store configuration sample:
120122

121123
.. code-block:: console
122124
@@ -137,6 +139,19 @@ The :ref:`registry` component won't start until it's configured with an S3 store
137139
gateway/host=s3.amazonaws.com \
138140
gateway/port=80
139141
142+
Openstack-swift support requires `Swift3`_ middleware to be installed. Here is a sample configuration:
143+
144+
.. code-block:: console
145+
146+
$ SWIFT_CONTAINER=mycontainer
147+
$ SWIFT_USER=system:root
148+
$ SWIFT_SECRET_KEY=testpass
149+
$ deisctl config registry set bucketName=${SWIFT_CONTAINER}
150+
$ deisctl config store set gateway/accessKey=${SWIFT_USER} \
151+
gateway/secretKey=${SWIFT_SECRET_KEY} \
152+
gateway/host=10.1.50.1 \
153+
gateway/port=8080
154+
140155
Configure database settings
141156
^^^^^^^^^^^^^^^^^^^^^^^^^^^
142157

@@ -182,3 +197,4 @@ When following the :ref:`upgrading-deis` documentation, be sure to use
182197
.. _`Amazon S3`: http://aws.amazon.com/s3/
183198
.. _`Arne-Christian Blystad`: https://github.com/blystad
184199
.. _`Papertrail`: https://papertrailapp.com/
200+
.. _`Swift3`: https://github.com/stackforge/swift3

0 commit comments

Comments
 (0)