Skip to content

Commit a78f297

Browse files
committed
Merge pull request #2229 from carmstrong/docs_fix_config
docs(managing_deis): fix deisctl config set examples
2 parents a21310a + 6ca1293 commit a78f297

10 files changed

Lines changed: 20 additions & 20 deletions

docs/managing_deis/builder_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ supplied with Deis:
5050

5151
.. code-block:: console
5252
53-
$ deisctl config builder set image myaccount/myimage:latest
53+
$ deisctl config builder set image=myaccount/myimage:latest
5454
5555
This will pull the image from the public Docker registry. You can also pull from a private
5656
registry:
5757

5858
.. code-block:: console
5959
60-
$ deisctl config builder set image registry.mydomain.org:5000/myaccount/myimage:latest
60+
$ deisctl config builder set image=registry.mydomain.org:5000/myaccount/myimage:latest
6161
6262
Be sure that your custom image functions in the same way as the `stock builder image`_ shipped with
6363
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.

docs/managing_deis/cache_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ supplied with Deis:
3737

3838
.. code-block:: console
3939
40-
$ deisctl config cache set image myaccount/myimage:latest
40+
$ deisctl config cache set image=myaccount/myimage:latest
4141
4242
This will pull the image from the public Docker registry. You can also pull from a private
4343
registry:
4444

4545
.. code-block:: console
4646
47-
$ deisctl config cache set image registry.mydomain.org:5000/myaccount/myimage:latest
47+
$ deisctl config cache set image=registry.mydomain.org:5000/myaccount/myimage:latest
4848
4949
Be sure that your custom image functions in the same way as the `stock cache image`_ shipped with
5050
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.

docs/managing_deis/controller_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ supplied with Deis:
6060

6161
.. code-block:: console
6262
63-
$ deisctl config controller set image myaccount/myimage:latest
63+
$ deisctl config controller set image=myaccount/myimage:latest
6464
6565
This will pull the image from the public Docker registry. You can also pull from a private
6666
registry:
6767

6868
.. code-block:: console
6969
70-
$ deisctl config controller set image registry.mydomain.org:5000/myaccount/myimage:latest
70+
$ deisctl config controller set image=registry.mydomain.org:5000/myaccount/myimage:latest
7171
7272
Be sure that your custom image functions in the same way as the `stock controller image`_ shipped with
7373
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.

docs/managing_deis/database_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ supplied with Deis:
5353

5454
.. code-block:: console
5555
56-
$ deisctl config database set image myaccount/myimage:latest
56+
$ deisctl config database set image=myaccount/myimage:latest
5757
5858
This will pull the image from the public Docker registry. You can also pull from a private
5959
registry:
6060

6161
.. code-block:: console
6262
63-
$ deisctl config database set image registry.mydomain.org:5000/myaccount/myimage:latest
63+
$ deisctl config database set image=registry.mydomain.org:5000/myaccount/myimage:latest
6464
6565
Be sure that your custom image functions in the same way as the `stock database image`_ shipped with
6666
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.

docs/managing_deis/logger_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ supplied with Deis:
3737

3838
.. code-block:: console
3939
40-
$ deisctl config logger set image myaccount/myimage:latest
40+
$ deisctl config logger set image=myaccount/myimage:latest
4141
4242
This will pull the image from the public Docker registry. You can also pull from a private
4343
registry:
4444

4545
.. code-block:: console
4646
47-
$ deisctl config logger set image registry.mydomain.org:5000/myaccount/myimage:latest
47+
$ deisctl config logger set image=registry.mydomain.org:5000/myaccount/myimage:latest
4848
4949
Be sure that your custom image functions in the same way as the `stock logger image`_ shipped with
5050
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.

docs/managing_deis/registry_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ supplied with Deis:
5454

5555
.. code-block:: console
5656
57-
$ deisctl config registry set image myaccount/myimage:latest
57+
$ deisctl config registry set image=myaccount/myimage:latest
5858
5959
This will pull the image from the public Docker registry. You can also pull from a private
6060
registry:
6161

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

docs/managing_deis/router_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ supplied with Deis:
6868

6969
.. code-block:: console
7070
71-
$ deisctl config router set image myaccount/myimage:latest
71+
$ deisctl config router set image=myaccount/myimage:latest
7272
7373
This will pull the image from the public Docker registry. You can also pull from a private
7474
registry:
7575

7676
.. code-block:: console
7777
78-
$ deisctl config router set image registry.mydomain.org:5000/myaccount/myimage:latest
78+
$ deisctl config router set image=registry.mydomain.org:5000/myaccount/myimage:latest
7979
8080
Be sure that your custom image functions in the same way as the `stock router image`_ shipped with
8181
Deis. Specifically, ensure that it sets and reads appropriate etcd keys.

docs/managing_deis/store_daemon_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ supplied with Deis:
5050

5151
.. code-block:: console
5252
53-
$ deisctl config store-daemon set image myaccount/myimage:latest
53+
$ deisctl config store-daemon set image=myaccount/myimage:latest
5454
5555
This will pull the image from the public Docker registry. You can also pull from a private
5656
registry:
5757

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

docs/managing_deis/store_gateway_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ supplied with Deis:
5555

5656
.. code-block:: console
5757
58-
$ deisctl config store-gateway set image myaccount/myimage:latest
58+
$ deisctl config store-gateway set image=myaccount/myimage:latest
5959
6060
This will pull the image from the public Docker registry. You can also pull from a private
6161
registry:
6262

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

docs/managing_deis/store_monitor_settings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ supplied with Deis:
4444

4545
.. code-block:: console
4646
47-
$ deisctl config store-monitor set image myaccount/myimage:latest
47+
$ deisctl config store-monitor set image=myaccount/myimage:latest
4848
4949
This will pull the image from the public Docker registry. You can also pull from a private
5050
registry:
5151

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

0 commit comments

Comments
 (0)