Skip to content

Commit 830a8c0

Browse files
author
Matthew Fisher
committed
Merge pull request #2397 from bacongobbler/patch-7
docs(troubleshooting): added instructions on manually updating CoreOS
2 parents 699dfc8 + fe4ce5b commit 830a8c0

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

docs/managing_deis/upgrading-deis.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,34 @@ new cluster, you would create a DNS record that looks like the following:
147147
Retire the old cluster
148148
^^^^^^^^^^^^^^^^^^^^^^
149149
Once all applications have been validated, the old cluster can be retired.
150+
151+
152+
Upgrading CoreOS
153+
----------------
154+
155+
Sometimes you may need to update CoreOS manually in order to get Deis to work. For example, Deis
156+
requires a minimum of CoreOS v471.1.0 for Ceph FS support. To update CoreOS, run the following
157+
commands:
158+
159+
.. code-block:: console
160+
161+
$ ssh core@<server ip>
162+
$ sudo su
163+
$ systemctl unmask update-engine.service
164+
$ systemctl start update-engine.service
165+
$ update_engine_client -update
166+
$ systemctl stop update-engine.service
167+
$ systemctl mask update-engine.service
168+
$ reboot
169+
170+
You can check the CoreOS version by running the following command on the CoreOS machine:
171+
172+
.. code-block:: console
173+
174+
$ cat /etc/os-release
175+
176+
Or from your local machine:
177+
178+
.. code-block:: console
179+
180+
$ ssh core@<server ip> 'cat /etc/os-release'

0 commit comments

Comments
 (0)