2015.8.2 新版功能.
Proxy minion interface module for managing Dell FX2 chassis (Dell Chassis Management Controller version 1.2 and above, iDRAC8 version 2.00 and above)
racadm
command line interface to CMC and iDRAC devices.Special Note: SaltStack thanks Adobe Corporation for their support in creating this proxy minion integration.
This proxy minion enables Dell FX2 and FX2s (hereafter referred to as simply "chassis", "CMC", or "FX2") chassis to be treated individually like a salt-minion.
Since the CMC embedded in the chassis does not run an OS capable of hosting a Python stack, the chassis can't run a minion directly. Salt's "Proxy Minion" functionality enables you to designate another machine to host a minion process that "proxies" communication from the salt-master. The master does not know nor care that the target is not a real minion.
More in-depth conceptual reading on Proxy Minions can be found in the Proxy Minion section of Salt's documentation.
To configure this integration, follow these steps:
Proxy minions get their configuration from Salt's Pillar. Every proxy must have a stanza in Pillar, and a reference in the Pillar topfile that matches the ID. At a minimum for communication with the chassis the pillar should look like this:
proxy:
host: <ip or dns name of chassis controller>
admin_username: <iDRAC username for the CMC, usually 'root'>
fallback_admin_username: <username to try if the first fails>
passwords:
- first_password
- second_password
- third-password
proxytype: fx2
The proxytype
line above is critical, it tells Salt which interface to load
from the proxy
directory in Salt's install hierarchy, or from /srv/salt/_proxy
on the salt-master (if you have created your own proxy module, for example).
The proxy integration will try the passwords listed in order. It is configured this way so you can have a regular password, a potential fallback password, and the third password can be the one you intend to change the chassis to use. This way, after it is changed, you should not need to restart the proxy minion--it should just pick up the third password in the list. You can then change pillar at will to move that password to the front and retire the unused ones.
Beware, many Dell CMC and iDRAC units are configured to lockout IP addresses or users after too many failed password attempts. This can generate user panic in the form of "I no longer know what the password is!!!". To mitigate panic try the web interface from a different IP, or setup a emergency administrator user in the CMC before doing a wholesale password rotation.
The automatic lockout can be disabled via Salt with the following:
salt <cmc> chassis.cmd set_general cfgRacTuning cfgRacTuneIpBlkEnable 0
and then verified with
salt <cmc> chassis.cmd get_general cfgRacTuning cfgRacTuneIpBlkEnable
After your pillar is in place, you can test the proxy. The proxy can run on any machine that has network connectivity to your salt-master and to the chassis in question. SaltStack recommends that this machine also run a regular minion, though it is not strictly necessary.
On the machine that will run the proxy, make sure there is an /etc/salt/proxy
file with at least the following in it:
master: <ip or hostname of salt-master>
You can start the proxy with
salt-proxy --proxyid <id you want to give the chassis>
You may want to add -l debug
to run the above in the foreground in debug
mode just to make sure everything is OK.
Next, accept the key for the proxy on your salt-master, just like you would for a regular minion:
salt-key -a <id you want to give the chassis>
You can confirm that the pillar data is in place for the proxy:
salt <id> pillar.items
And now you should be able to ping the chassis to make sure it is responding:
salt <id> test.ping
At this point you can execute one-off commands against the chassis. For example, you can get the chassis inventory:
salt <id> chassis.cmd inventory
Note that you don't need to provide credentials or an ip/hostname. Salt knows to use the credentials you stored in Pillar.
It's important to understand how this particular proxy works.
Salt.modules.dracr is a standard Salt execution
module. If you pull up the docs for it you'll see that almost every function
in the module takes credentials and a target host. When credentials and a host
aren't passed, Salt runs racadm
against the local machine. If you wanted
you could run functions from this module on any host where an appropriate
version of racadm
is installed, and that host would reach out over the network
and communicate with the chassis.
Chassis.cmd
acts as a "shim" between the execution module and the proxy. It's
first parameter is always the function from salt.modules.dracr to execute. If the
function takes more positional or keyword arguments you can append them to the call.
It's this shim that speaks to the chassis through the proxy, arranging for the
credentials and hostname to be pulled from the pillar section for this proxy minion.
Because of the presence of the shim, to lookup documentation for what functions you can use to interface with the chassis, you'll want to look in salt.modules.dracr instead of salt.modules.chassis.
Associated states are thoroughly documented in salt.states.dellchassis.
Look there to find an example structure for pillar as well as an example
.sls
file for standing up a Dell Chassis from scratch.
salt.proxy.fx2.
admin_password
()¶Return the admin_password in the DETAILS dictionary, or 'calvin' (the Dell default) if there is none present
salt.proxy.fx2.
admin_username
()¶Return the admin_username in the DETAILS dictionary, or root if there is none present
salt.proxy.fx2.
chconfig
(cmd, *args, **kwargs)¶This function is called by the salt.modules.chassis.cmd
shim. It then calls whatever is passed in cmd
inside the salt.modules.dracr
module.
参数: |
|
---|---|
返回: | Passthrough the return from the dracr module. |
salt.proxy.fx2.
find_credentials
()¶Cycle through all the possible credentials and return the first one that works
salt.proxy.fx2.
grains
()¶Get the grains from the proxied device
salt.proxy.fx2.
grains_refresh
()¶Refresh the grains from the proxied device
salt.proxy.fx2.
host
()¶salt.proxy.fx2.
init
(opts)¶This function gets called when the proxy starts up. We check opts to see if a fallback user and password are supplied. If they are present, and the primary credentials don't work, then we try the backup before failing.
Whichever set of credentials works is placed in the persistent DETAILS dictionary and will be used for further communication with the chassis.
salt.proxy.fx2.
ping
()¶Is the chassis responding?
返回: | Returns False if the chassis didn't respond, True otherwise. |
---|
salt.proxy.fx2.
shutdown
(opts)¶Shutdown the connection to the proxied device. For this proxy shutdown is a no-op.