Salt is necessary to run the Tanzu Salt installation. At a bare minimum, Salt and its dependencies must be installed on the nodes that are involved in a standard Tanzu Salt installation scenario.
You are strongly encouraged to install Salt beforehand on any infrastructure that you plan to manage with Tanzu Salt. Installing Salt simplifies and streamlines the process of updating to future versions of Salt. Before you begin your Tanzu Salt installation, consider installing Salt on your infrastructure and then monitoring it for a period of time to ensure it is stable and running as expected.
Consult these guides to ensure your environment is following best practices when implementing Salt in your infrastructure:
In order to prepare your machines for a standard installation of Tanzu Salt, you need to install or upgrade Salt and Python. Salt and Python need to be present and updated on all nodes that are involved in the installation. The installation fails if Salt and the installer’s dependencies are not installed on your nodes.
In a standard installation, you need to install both the Salt master service and the minion service on the Salt master host.
These instructions install the latest Salt release on Redhat/Centos 7 PY3. If your machine is running a different operating system or version of Python, the script will not work. For information about installing Salt on other operating systems or Python versions, see the Salt Install Guide.
Note:
Centos 7, by default, blocks connections to the Salt master. You must create firewall rules to allow connectivity:
• firewall-cmd –permanent –zone=public –add-port=4505-4506/tcp
• firewall-cmd –reload
For more information, see Opening the Firewall up for Salt.
Install the Salt project repository and key:
sudo yum install https://repo.saltstack.com/py3/redhat/salt-py3-repo-latest.el7.noarch.rpm
Clear the cache:
sudo yum clean expire-cache
Install the Salt master service and the minion service on the Salt master node:
sudo yum install salt-master
sudo yum install salt-minion
Create a master.conf
file in the /etc/salt/minion.d
directory. In this file, set the Salt master’s IP address to point to itself:
master: localhost
Start the Salt master service and minion service:
sudo systemctl start salt-master
sudo systemctl enable salt-minion
sudo systemctl start salt-minion
Use service salt-minion restart
to restart the minions if needed.
After installing Salt on the Salt master as described in the previous section, the next step is to install the minion service (not the master service) on the three nodes that will become the RaaS, a Redis database, and a PostgreSQL database.
Then, you need to configure the minions to communicate with the Salt master. For more detailed information about installing the minion service, see Minion Configuration in the Salt documentation.
To install the minion service:
Install only the minion service by running the following command:
sudo yum install salt-minion
Answer y
to all prompts to accept all changes.
Configure each minion to communicate with the Salt master by creating a master.conf
file in the /etc/salt/minion.d
directory. In this file, provide the Salt master’s IP address. For example:
master: 192.0.2.1
Start the minion service:
sudo systemctl enable salt-minion
sudo systemctl start salt-minion
Use servicesalt-minionrestart
to restart the minions if needed.
Repeat the previous steps for all remaining nodes.
At this point, you have installed the Salt master service and minion service, and you have provided your minions with the Salt master’s IP address. Now, in order for the Salt master to send commands to the minions, the next step to accept the minion keys on the Salt master.
Before proceeding:
To accept the keys:
In the Salt master’s terminal, list all the keys that are on Salt master:
salt-key -L
Check that all the minion IDs are listed in Unacceptedkeys
.
If the minion IDs appear in Acceptedkeys
, no further action is needed as this is the end goal.
Accept each minion ID using the following command, replacing the
salt-key -a <your-minion-ID>
Running salt-key-A
accepts all keys.
Answer y
to all prompts.
salt-key-L
command a second time to confirm all minions appear in Acceptedkeys
.The one exception to the general recommendation to install Salt beforehand is when you are installing Tanzu Salt in an air-gapped system. Be aware that there are trade-offs of installing Salt on your infrastructure in an air-gapped system.
The Tanzu Salt installer can install the latest stable version of Salt as it runs. The installer comes packaged a bundle to install the minion, master, and salt library package.
Note:
Aria Tanzu Salt no longer ships with the Salt Crystal package.