This guide describes how to bootstrap new Production Core OS Cluster as High Availability Service in a 15 minutes with using etcd2, Fleet, Flannel, Confd, Nginx Balancer and Docker.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# this is going to be a rewrite of this: | |
# https://github.com/defsdoor/letsencrypt-autorenew/blob/master/get_certificates | |
# example file mycerts: | |
## EMAIL [email protected] | |
## HOSTS www.example.com | |
## EMAIL [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
** Add repository and install bitcoind ** | |
sudo apt-get install build-essential libtool autotools-dev autoconf libssl-dev libboost-all-dev software-properties-common | |
sudo add-apt-repository ppa:bitcoin/bitcoin | |
sudo apt-get install libevent-dev | |
sudo apt-get install libdb4.8-dev libdb4.8++-dev # if you are on ubuntu 18.04, skip this part and do the next on 20.04 | |
# if you are ubuntu 20.04 there needs to be a patch for libdb4.8 applied | |
# https://gist.github.com/danieldk/5700533 | |
# https://askubuntu.com/questions/393289/how-to-install-libdb4-8-dev-or-equivalent-on-13-10 |