PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/proxy/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/proxy/esxvm.py |
""" Proxy Minion interface module for managing VMWare ESXi virtual machines. Dependencies ============ - pyVmomi - jsonschema Configuration ============= To use this integration proxy module, please configure the following: Pillar ------ Proxy minions get their configuration from Salt's Pillar. This can now happen from the proxy's configuration file. Example pillars: ``userpass`` mechanism: .. code-block:: yaml proxy: proxytype: esxvm datacenter: <datacenter name> vcenter: <ip or dns name of parent vcenter> mechanism: userpass username: <vCenter username> passwords: (required if userpass is used) - first_password - second_password - third_password ``sspi`` mechanism: .. code-block:: yaml proxy: proxytype: esxvm datacenter: <datacenter name> vcenter: <ip or dns name of parent vcenter> mechanism: sspi domain: <user domain> principal: <host kerberos principal> proxytype ^^^^^^^^^ To use this Proxy Module, set this to ``esxvm``. datacenter ^^^^^^^^^^ Name of the datacenter where the virtual machine should be deployed. Required. vcenter ^^^^^^^ The location of the VMware vCenter server (host of ip) where the virtual machine should be managed. Required. mechanism ^^^^^^^^^ The mechanism used to connect to the vCenter server. Supported values are ``userpass`` and ``sspi``. Required. Note: Connections are attempted using all (``username``, ``password``) combinations on proxy startup. username ^^^^^^^^ The username used to login to the host, such as ``root``. Required if mechanism is ``userpass``. passwords ^^^^^^^^^ A list of passwords to be used to try and login to the vCenter server. At least one password in this list is required if mechanism is ``userpass``. When the proxy comes up, it will try the passwords listed in order. domain ^^^^^^ User realm domain. Required if mechanism is ``sspi``. principal ^^^^^^^^^ Kerberos principal. Rquired if mechanism is ``sspi``. protocol ^^^^^^^^ If the ESXi host is not using the default protocol, set this value to an alternate protocol. Default is ``https``. port ^^^^ If the ESXi host is not using the default port, set this value to an alternate port. Default is ``443``. Salt Proxy ---------- 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 vCenter server in the pillar. SaltStack recommends that the machine running the salt-proxy process also run a regular minion, though it is not strictly necessary. To start a proxy minion one needs to establish its identity <id>: .. code-block:: bash salt-proxy --proxyid <proxy_id> On the machine that will run the proxy, make sure there is a configuration file present. By default this is ``/etc/salt/proxy``. If in a different location, the ``<configuration_folder>`` has to be specified when running the proxy: file with at least the following in it: .. code-block:: bash salt-proxy --proxyid <proxy_id> -c <configuration_folder> Commands -------- Once the proxy is running it will connect back to the specified master and individual commands can be runs against it: .. code-block:: bash # Master - minion communication salt <proxy_id> test.ping # Test vcenter connection salt <proxy_id> vsphere.test_vcenter_connection States ------ Associated states are documented in :mod:`salt.states.esxvm </ref/states/all/salt.states.esxvm>`. Look there to find an example structure for Pillar as well as an example ``.sls`` file for configuring an ESX virtual machine from scratch. """ import logging import os import salt.exceptions as excs from salt.utils.dictupdate import merge # This must be present or the Salt loader won't load this module. __proxyenabled__ = ["esxvm"] # Variables are scoped to this module so we can have persistent data # across calls to fns in here. GRAINS_CACHE = {} DETAILS = {} # Set up logging log = logging.getLogger(__name__) # Define the module's virtual name __virtualname__ = "esxvm" def __virtual__(): """ Only load if the vsphere execution module is available. """ return __virtualname__ def init(opts): """ This function gets called when the proxy starts up. For login the protocol and port are cached. """ log.debug("Initting esxvm proxy module in process %s", os.getpid()) log.debug("Validating esxvm proxy input") proxy_conf = merge(opts.get("proxy", {}), __pillar__.get("proxy", {})) log.trace("proxy_conf = %s", proxy_conf) # TODO json schema validation # Save mandatory fields in cache for key in ("vcenter", "datacenter", "mechanism"): DETAILS[key] = proxy_conf[key] # Additional validation if DETAILS["mechanism"] == "userpass": if "username" not in proxy_conf: raise excs.InvalidProxyInputError( "Mechanism is set to 'userpass' , but no " "'username' key found in pillar for this proxy." ) if "passwords" not in proxy_conf: raise excs.InvalidProxyInputError( "Mechanism is set to 'userpass' , but no " "'passwords' key found in pillar for this proxy." ) for key in ("username", "passwords"): DETAILS[key] = proxy_conf[key] else: if "domain" not in proxy_conf: raise excs.InvalidProxyInputError( "Mechanism is set to 'sspi' , but no " "'domain' key found in pillar for this proxy." ) if "principal" not in proxy_conf: raise excs.InvalidProxyInputError( "Mechanism is set to 'sspi' , but no " "'principal' key found in pillar for this proxy." ) for key in ("domain", "principal"): DETAILS[key] = proxy_conf[key] # Save optional DETAILS["protocol"] = proxy_conf.get("protocol") DETAILS["port"] = proxy_conf.get("port") # Test connection if DETAILS["mechanism"] == "userpass": # Get the correct login details log.debug( "Retrieving credentials and testing vCenter connection for " "mehchanism 'userpass'" ) try: username, password = find_credentials() DETAILS["password"] = password except excs.SaltSystemExit as err: log.critical("Error: %s", err) return False return True def ping(): """ Returns True. CLI Example: .. code-block:: bash salt esx-vm test.ping """ return True def shutdown(): """ Shutdown the connection to the proxy device. For this proxy, shutdown is a no-op. """ log.debug("ESX vm proxy shutdown() called...") def find_credentials(): """ Cycle through all the possible credentials and return the first one that works. """ # if the username and password were already found don't go through the # connection process again if "username" in DETAILS and "password" in DETAILS: return DETAILS["username"], DETAILS["password"] passwords = __pillar__["proxy"]["passwords"] for password in passwords: DETAILS["password"] = password if not __salt__["vsphere.test_vcenter_connection"](): # We are unable to authenticate continue # If we have data returned from above, we've successfully authenticated. return DETAILS["username"], password # We've reached the end of the list without successfully authenticating. raise excs.VMwareConnectionError( "Cannot complete login due to incorrect credentials." ) def get_details(): """ Function that returns the cached details """ return DETAILS