From 8089d5dbc8f2e46e4127813db25394ebfd076678 Mon Sep 17 00:00:00 2001 From: Bryce Meyer Date: Wed, 16 Jan 2019 10:30:54 -0800 Subject: [PATCH 1/2] Single Node Upgrade: Add reminder for acme users --- .../en/upgrades/upgrades/single-node-upgrade/_index.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md b/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md index f8251a3c9e8..71fe3f6696f 100644 --- a/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md +++ b/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md @@ -96,6 +96,14 @@ During upgrade, you create a copy of the data from your current Rancher containe docker run -d --volumes-from rancher-data --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher:latest ``` + >**Attention Let’s Encrypt Users:** + > + >Remeber to append `--acme-domain ` to the run command, otherwise rancher will fall back to self signed certificates. + >``` + >docker run -d --volumes-from rancher-data --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher:latest --acme-domain + >``` + + >**Want records of all transactions with the Rancher API?** > >Enable the [API Auditing]({{< baseurl >}}/rancher/v2.x/en/installation/api-auditing) feature by adding the flags below into your upgrade command. From cde478da2cd3ed906600f68bfa21378296e2b5aa Mon Sep 17 00:00:00 2001 From: Denise Date: Wed, 30 Jan 2019 14:35:06 -0800 Subject: [PATCH 2/2] Update _index.md --- .../v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md b/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md index 71fe3f6696f..1b04257eb02 100644 --- a/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md +++ b/content/rancher/v2.x/en/upgrades/upgrades/single-node-upgrade/_index.md @@ -98,7 +98,7 @@ During upgrade, you create a copy of the data from your current Rancher containe >**Attention Let’s Encrypt Users:** > - >Remeber to append `--acme-domain ` to the run command, otherwise rancher will fall back to self signed certificates. + >Remember to append `--acme-domain ` to the run command, otherwise Rancher will fall back to using self signed certificates. >``` >docker run -d --volumes-from rancher-data --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher:latest --acme-domain >```