diff --git a/manuscript/community/discord.md b/manuscript/community/discord.md index af7a47e..9999f82 100644 --- a/manuscript/community/discord.md +++ b/manuscript/community/discord.md @@ -93,13 +93,10 @@ Discord supports minimal message formatting using [markdown](https://support.dis ## How do I suggest something? -1. Find the #completed channel (under the **Suggestions** category), and confirm that your suggestion hasn't already been voted on. -2. Find the #in-flight channel (also under **Suggestions**), and confirm that your suggestion isn't already in-flight (*but not completed yet*) +1. Find the #completed channel (*under the **Suggestions** category*), and confirm that your suggestion hasn't already been voted on. +2. Find the #in-flight channel (*also under **Suggestions***), and confirm that your suggestion isn't already in-flight (*but not completed yet*) 3. In any channel, type `!suggest [your suggestion goes here]`. A post will be created in #in-flight for other users to vote on your suggestion. Suggestions change color as more users vote on them. -4. When your suggestion is completed (or a decision has been made), you'll receive a DM from carl-bot - -If there is something that is not listed in this guide but you cannot figure out you can head over to Discords support center [here](https://support.discord.com/hc/en-us) where they have resources to help you. (Or you can suggest to edit this guide) - +4. When your suggestion is completed (*or a decision has been made*), you'll receive a DM from carl-bot diff --git a/manuscript/ha-docker-swarm/shared-storage-ceph.md b/manuscript/ha-docker-swarm/shared-storage-ceph.md index 6ebd858..b3a3b95 100644 --- a/manuscript/ha-docker-swarm/shared-storage-ceph.md +++ b/manuscript/ha-docker-swarm/shared-storage-ceph.md @@ -170,6 +170,19 @@ raphael,donatello,leonardo:/ /var/data ceph name=admin,noatime,_netdev 0 0" >> / mount -a ``` +??? note "Additional steps on Debian Buster" + The above configuration worked on Ubuntu 18.04 **without** requiring a secret to be defined in `/etc/fstab`. Other users have [reported different results](https://discourse.geek-kitchen.funkypenguin.co.nz/t/shared-storage-ceph-funky-penguins-geek-cookbook/47/108) on Debian Buster, however, so consider trying this variation if you encounter error 22: + + ``` + apt-get install ceph-common + CEPHKEY=`sudo ceph-authtool -p /etc/ceph/ceph.client.admin.keyring` + echo -e " + # Mount cephfs volume \n + raphael,donatello,leonardo:/ /var/data ceph name=admin,secret=$CEPHKEY,noatime,_netdev 0 0" >> /etc/fstab + mount -a + ``` + + ## Serving ### Sprinkle with tools