Difference between revisions of "SaltStack Install"
Jump to navigation
Jump to search
(Created page with "# Examples using LXD Minion ``` lxc launch ubuntu:18.04 salt lxc exec sftp3 -- script /dev/null -c "curl -L https://bootstrap.saltstack.com -o install_salt.sh" lxc exec sftp3...") |
|||
Line 1: | Line 1: | ||
# Examples using LXD | # Examples using LXD | ||
+ | - https://repo.saltstack.com/ | ||
− | + | Master | |
``` | ``` | ||
lxc launch ubuntu:18.04 salt | lxc launch ubuntu:18.04 salt |
Revision as of 04:25, 13 April 2020
Examples using LXD
Master
lxc launch ubuntu:18.04 salt lxc exec sftp3 -- script /dev/null -c "curl -L https://bootstrap.saltstack.com -o install_salt.sh" lxc exec sftp3 -- script /dev/null -c "sudo sh install_salt.sh -M -x python3 -D"
Minion
lxc launch ubuntu:18.04 sftp3 lxc exec sftp3 -- script /dev/null -c "curl -L https://bootstrap.saltstack.com -o install_salt.sh" lxc exec sftp3 -- script /dev/null -c "sudo sh install_salt.sh -P -x python3 -D"