Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
docs(managing_deis): fix deisctl config set examples
Browse files Browse the repository at this point in the history
  • Loading branch information
carmstrong committed Oct 22, 2014
1 parent 8db48dd commit 6ca1293
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions docs/managing_deis/builder_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config builder set image myaccount/myimage:latest
$ deisctl config builder set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config builder set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config builder set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock builder image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/cache_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config cache set image myaccount/myimage:latest
$ deisctl config cache set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config cache set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config cache set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock cache image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/controller_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config controller set image myaccount/myimage:latest
$ deisctl config controller set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config controller set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config controller set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock controller image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/database_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config database set image myaccount/myimage:latest
$ deisctl config database set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config database set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config database set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock database image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/logger_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config logger set image myaccount/myimage:latest
$ deisctl config logger set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config logger set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config logger set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock logger image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/registry_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config registry set image myaccount/myimage:latest
$ deisctl config registry set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config registry set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config registry set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock registry image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/router_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config router set image myaccount/myimage:latest
$ deisctl config router set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config router set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config router set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock router image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/store_daemon_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config store-daemon set image myaccount/myimage:latest
$ deisctl config store-daemon set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config store-daemon set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config store-daemon set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock store-daemon image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/store_gateway_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config store-gateway set image myaccount/myimage:latest
$ deisctl config store-gateway set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config store-gateway set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config store-gateway set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock store-gateway image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/managing_deis/store_monitor_settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ supplied with Deis:

.. code-block:: console
$ deisctl config store-monitor set image myaccount/myimage:latest
$ deisctl config store-monitor set image=myaccount/myimage:latest
This will pull the image from the public Docker registry. You can also pull from a private
registry:

.. code-block:: console
$ deisctl config store-monitor set image registry.mydomain.org:5000/myaccount/myimage:latest
$ deisctl config store-monitor set image=registry.mydomain.org:5000/myaccount/myimage:latest
Be sure that your custom image functions in the same way as the `stock store-monitor image`_ shipped with
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.
Expand Down

0 comments on commit 6ca1293

Please sign in to comment.