-
Notifications
You must be signed in to change notification settings - Fork 35
salt
Salt (also referred to as SaltStack) is a Python-based open source configuration management software and remote execution agent. Salt supports the infrastructure as code approach to deployment and cloud management.
Salt has two main components:
-
The Salt master (server) is the location where users interact with all Salt minions (client); all Salt minions are subscribed to the Salt master.
-
The Salt minion (client) nodes are the minions (such as OPX devices) that are managed by the Salt master. The Salt minion is installed on each client (OPX device) and the Salt master IP is configured in the minion.
The Salt master acts as a hub for configuration data — the Salt master stores all modules, states, formulas, and templates. The Salt key describes each subscribed minion that is managed by the Salt master.
NOTE: See About SaltStack and SaltStack Documentation for complete information.
The Salt minion should be installed and run on the OpenSwitch OPX (client) device.
- Installing/Testing a Salt Release Candidate
- Configuring the Salt Master
- Configuring the Salt Minion
- State Modules
sudo add-apt-repository --remove ppa:saltstack/salt
# if this fails run "sudo apt-get install -y software-properties-common"
apt-get install curl
curl -L https://bootstrap.saltstack.com -o install_salt.sh
sh install_salt.sh -P -M
# if this fails kill all Salt processes "ps -ef | grep -i salt" and run the command again
mkdir -p /srv/{salt,pillar}
mkdir -p /srv/salt/{templates,states}
vi /etc/salt/master
# Uncomment "interface 0.0.0.0"
# add "pillar_roots" (intent is important as this is YAML structure)
pillar_roots:
base:
- /srv/pillar
# add "file_roots" (intent is important as this is YAML structure)
file_roots:
base:
- /srv/salt
- /srv/pillar
- /srv/salt/templates
- /srv/salt/states
service salt-master restart
service salt-master status
apt-get install curl
curl -L https://bootstrap.saltstack.com -o install_salt.sh
sh install_salt.sh -P
vi /etc/salt/minion
master: <salt master-ip>
service salt-minion restart
service salt-minion status
© 2019 OpenSwitch project. All information is contributed to and made available by OPX under the Creative Commons Attribution 4.0 International License (available at http://creativecommons.org/licenses/by/4.0/).
- Home
- System overview
- Software releases
- Hardware support
- FAQs
- Install
- Build
- Configure
- Develop
- Administer
- Troubleshoot
- Software compatibility
- Contribute
- DevOps
- Join