sanity_checks.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. """
  2. Ansible action plugin to ensure inventory variables are set
  3. appropriately and no conflicting options have been provided.
  4. """
  5. import re
  6. from ansible.plugins.action import ActionBase
  7. from ansible import errors
  8. # Valid values for openshift_deployment_type
  9. VALID_DEPLOYMENT_TYPES = ('origin', 'openshift-enterprise')
  10. # Tuple of variable names and default values if undefined.
  11. NET_PLUGIN_LIST = (('openshift_use_openshift_sdn', True),
  12. ('openshift_use_flannel', False),
  13. ('openshift_use_nuage', False),
  14. ('openshift_use_contiv', False),
  15. ('openshift_use_calico', False),
  16. ('openshift_use_kuryr', False))
  17. ENTERPRISE_TAG_REGEX_ERROR = """openshift_image_tag must be in the format
  18. v#.#[.#[.#]]. Examples: v1.2, v3.4.1, v3.5.1.3,
  19. v3.5.1.3.4, v1.2-1, v1.2.3-4, v1.2.3-4.5, v1.2.3-4.5.6
  20. You specified openshift_image_tag={}"""
  21. ORIGIN_TAG_REGEX_ERROR = """openshift_image_tag must be in the format
  22. v#.#[.#-optional.#]. Examples: v1.2.3, v3.5.1-alpha.1
  23. You specified openshift_image_tag={}"""
  24. ORIGIN_TAG_REGEX = {'re': '(^v?\\d+\\.\\d+.*)',
  25. 'error_msg': ORIGIN_TAG_REGEX_ERROR}
  26. ENTERPRISE_TAG_REGEX = {'re': '(^v\\d+\\.\\d+(\\.\\d+)*(-\\d+(\\.\\d+)*)?$)',
  27. 'error_msg': ENTERPRISE_TAG_REGEX_ERROR}
  28. IMAGE_TAG_REGEX = {'origin': ORIGIN_TAG_REGEX,
  29. 'openshift-enterprise': ENTERPRISE_TAG_REGEX}
  30. STORAGE_KIND_TUPLE = (
  31. 'openshift_hosted_registry_storage_kind',
  32. 'openshift_loggingops_storage_kind',
  33. 'openshift_logging_storage_kind',
  34. 'openshift_metrics_storage_kind',
  35. 'openshift_prometheus_alertbuffer_storage_kind',
  36. 'openshift_prometheus_alertmanager_storage_kind',
  37. 'openshift_prometheus_storage_kind')
  38. REMOVED_VARIABLES = (
  39. # TODO(michaelgugino): Remove these in 3.11
  40. ('openshift_metrics_image_prefix', 'openshift_metrics_<component>_image'),
  41. ('openshift_metrics_image_version', 'openshift_metrics_<component>_image'),
  42. ('openshift_grafana_proxy_image_prefix', 'openshift_grafana_proxy_image'),
  43. ('openshift_grafana_proxy_image_version', 'openshift_grafana_proxy_image'),
  44. ('openshift_logging_image_prefix', 'openshift_logging_image'),
  45. ('openshift_logging_image_verion', 'openshift_logging_image'),
  46. ('openshift_logging_curator_image_prefix', 'openshift_logging_curator_image'),
  47. ('openshift_logging_curator_image_version', 'openshift_logging_curator_image'),
  48. ('openshift_logging_elasticsearch_image_prefix', 'openshift_logging_elasticsearch_image'),
  49. ('openshift_logging_elasticsearch_image_version', 'openshift_logging_elasticsearch_image'),
  50. ('openshift_logging_elasticsearch_proxy_image_prefix', 'openshift_logging_elasticsearch_proxy_image'),
  51. ('openshift_logging_elasticsearch_proxy_image_version', 'openshift_logging_elasticsearch_proxy_image'),
  52. ('openshift_logging_fluentd_image_prefix', 'openshift_logging_fluentd_image'),
  53. ('openshift_logging_fluentd_image_version', 'openshift_logging_fluentd_image'),
  54. ('openshift_logging_kibana_image_prefix', 'openshift_logging_kibana_image'),
  55. ('openshift_logging_kibana_image_version', 'openshift_logging_kibana_image'),
  56. ('openshift_logging_kibana_proxy_image_prefix', 'openshift_logging_kibana_proxy_image'),
  57. ('openshift_logging_kibana_proxy_image_version', 'openshift_logging_kibana_proxy_image'),
  58. ('openshift_logging_mux_image_prefix', 'openshift_logging_mux_image'),
  59. ('openshift_logging_mux_image_version', 'openshift_logging_mux_image'),
  60. ('openshift_prometheus_image_prefix', 'openshift_prometheus_image'),
  61. ('openshift_prometheus_image_version', 'openshift_prometheus_image'),
  62. ('openshift_prometheus_proxy_image_prefix', 'openshift_prometheus_proxy_image'),
  63. ('openshift_prometheus_proxy_image_version', 'openshift_prometheus_proxy_image'),
  64. ('openshift_prometheus_altermanager_image_prefix', 'openshift_prometheus_altermanager_image'),
  65. ('openshift_prometheus_altermanager_image_version', 'openshift_prometheus_altermanager_image'),
  66. ('openshift_prometheus_alertbuffer_image_prefix', 'openshift_prometheus_alertbuffer_image'),
  67. ('openshift_prometheus_alertbuffer_image_version', 'openshift_prometheus_alertbuffer_image'),
  68. ('openshift_prometheus_node_exporter_image_prefix', 'openshift_prometheus_node_exporter_image'),
  69. ('openshift_prometheus_node_exporter_image_version', 'openshift_prometheus_node_exporter_image'),
  70. ('openshift_descheduler_image_prefix', 'openshift_descheduler_image'),
  71. ('openshift_descheduler_image_version', 'openshift_descheduler_image'),
  72. ('openshift_docker_gc_version', 'openshift_docker_gc_image'),
  73. ('openshift_web_console_prefix', 'openshift_web_console_image'),
  74. ('openshift_web_console_version', 'openshift_web_console_image'),
  75. ('openshift_web_console_image_name', 'openshift_web_console_image'),
  76. ('openshift_storage_glusterfs_version', 'openshift_storage_glusterfs_image'),
  77. ('openshift_storage_glusterfs_block_version', 'openshift_storage_glusterfs_block_image'),
  78. ('openshift_storage_glusterfs_s3_version', 'openshift_storage_glusterfs_s3_image'),
  79. ('openshift_storage_glusterfs_heketi_version', 'openshift_storage_glusterfs_heketi_image'),
  80. ('openshift_storage_glusterfs_registry_version', 'openshift_storage_glusterfs_registry_image'),
  81. ('openshift_storage_glusterfs_registry_block_version', 'openshift_storage_glusterfs_registry_block_image'),
  82. ('openshift_storage_glusterfs_registry_s3_version', 'openshift_storage_glusterfs_registry_s3_image'),
  83. ('openshift_storage_glusterfs_registry_heketi_version', 'openshift_storage_glusterfs_registry_heketi_image'),
  84. )
  85. # TODO(michaelgugino): Remove in 3.11
  86. CHANGED_IMAGE_VARS = (
  87. 'openshift_storage_glusterfs_image',
  88. 'openshift_storage_glusterfs_block_image',
  89. 'openshift_storage_glusterfs_s3_image',
  90. 'openshift_storage_glusterfs_heketi_image',
  91. 'openshift_storage_glusterfs_registry_image',
  92. 'openshift_storage_glusterfs_registry_block_image',
  93. 'openshift_storage_glusterfs_registry_s3_image',
  94. 'openshift_storage_glusterfs_registry_heketi_image',
  95. )
  96. def to_bool(var_to_check):
  97. """Determine a boolean value given the multiple
  98. ways bools can be specified in ansible."""
  99. # http://yaml.org/type/bool.html
  100. yes_list = (True, 1, "True", "1", "true", "TRUE",
  101. "Yes", "yes", "Y", "y", "YES",
  102. "on", "ON", "On")
  103. return var_to_check in yes_list
  104. def check_for_removed_vars(hostvars, host):
  105. """Fails if removed variables are found"""
  106. found_removed = []
  107. for item in REMOVED_VARIABLES:
  108. if item in hostvars[host]:
  109. found_removed.append(item)
  110. if found_removed:
  111. msg = "Found removed variables: "
  112. for item in found_removed:
  113. msg += "{} is replaced by {}; ".format(item[0], item[1])
  114. raise errors.AnsibleModuleError(msg)
  115. return None
  116. class ActionModule(ActionBase):
  117. """Action plugin to execute sanity checks."""
  118. def template_var(self, hostvars, host, varname):
  119. """Retrieve a variable from hostvars and template it.
  120. If undefined, return None type."""
  121. # We will set the current host and variable checked for easy debugging
  122. # if there are any unhandled exceptions.
  123. # pylint: disable=W0201
  124. self.last_checked_var = varname
  125. # pylint: disable=W0201
  126. self.last_checked_host = host
  127. res = hostvars[host].get(varname)
  128. if res is None:
  129. return None
  130. return self._templar.template(res)
  131. def check_openshift_deployment_type(self, hostvars, host):
  132. """Ensure a valid openshift_deployment_type is set"""
  133. openshift_deployment_type = self.template_var(hostvars, host,
  134. 'openshift_deployment_type')
  135. if openshift_deployment_type not in VALID_DEPLOYMENT_TYPES:
  136. type_strings = ", ".join(VALID_DEPLOYMENT_TYPES)
  137. msg = "openshift_deployment_type must be defined and one of {}".format(type_strings)
  138. raise errors.AnsibleModuleError(msg)
  139. return openshift_deployment_type
  140. def check_python_version(self, hostvars, host, distro):
  141. """Ensure python version is 3 for Fedora and python 2 for others"""
  142. ansible_python = self.template_var(hostvars, host, 'ansible_python')
  143. if distro == "Fedora":
  144. if ansible_python['version']['major'] != 3:
  145. msg = "openshift-ansible requires Python 3 for {};".format(distro)
  146. msg += " For information on enabling Python 3 with Ansible,"
  147. msg += " see https://docs.ansible.com/ansible/python_3_support.html"
  148. raise errors.AnsibleModuleError(msg)
  149. else:
  150. if ansible_python['version']['major'] != 2:
  151. msg = "openshift-ansible requires Python 2 for {};".format(distro)
  152. def check_image_tag_format(self, hostvars, host, openshift_deployment_type):
  153. """Ensure openshift_image_tag is formatted correctly"""
  154. openshift_image_tag = self.template_var(hostvars, host, 'openshift_image_tag')
  155. if not openshift_image_tag or openshift_image_tag == 'latest':
  156. return None
  157. regex_to_match = IMAGE_TAG_REGEX[openshift_deployment_type]['re']
  158. res = re.match(regex_to_match, str(openshift_image_tag))
  159. if res is None:
  160. msg = IMAGE_TAG_REGEX[openshift_deployment_type]['error_msg']
  161. msg = msg.format(str(openshift_image_tag))
  162. raise errors.AnsibleModuleError(msg)
  163. def network_plugin_check(self, hostvars, host):
  164. """Ensure only one type of network plugin is enabled"""
  165. res = []
  166. # Loop through each possible network plugin boolean, determine the
  167. # actual boolean value, and append results into a list.
  168. for plugin, default_val in NET_PLUGIN_LIST:
  169. res_temp = self.template_var(hostvars, host, plugin)
  170. if res_temp is None:
  171. res_temp = default_val
  172. res.append(to_bool(res_temp))
  173. if sum(res) not in (0, 1):
  174. plugin_str = list(zip([x[0] for x in NET_PLUGIN_LIST], res))
  175. msg = "Host Checked: {} Only one of must be true. Found: {}".format(host, plugin_str)
  176. raise errors.AnsibleModuleError(msg)
  177. def check_hostname_vars(self, hostvars, host):
  178. """Checks to ensure openshift_hostname
  179. and openshift_public_hostname
  180. conform to the proper length of 63 characters or less"""
  181. for varname in ('openshift_public_hostname', 'openshift_hostname'):
  182. var_value = self.template_var(hostvars, host, varname)
  183. if var_value and len(var_value) > 63:
  184. msg = '{} must be 63 characters or less'.format(varname)
  185. raise errors.AnsibleModuleError(msg)
  186. def check_session_auth_secrets(self, hostvars, host):
  187. """Checks session_auth_secrets is correctly formatted"""
  188. sas = self.template_var(hostvars, host,
  189. 'openshift_master_session_auth_secrets')
  190. ses = self.template_var(hostvars, host,
  191. 'openshift_master_session_encryption_secrets')
  192. # This variable isn't mandatory, only check if set.
  193. if sas is None and ses is None:
  194. return None
  195. if not (
  196. issubclass(type(sas), list) and issubclass(type(ses), list)
  197. ) or len(sas) != len(ses):
  198. raise errors.AnsibleModuleError(
  199. 'Expects openshift_master_session_auth_secrets and '
  200. 'openshift_master_session_encryption_secrets are equal length lists')
  201. for secret in sas:
  202. if len(secret) < 32:
  203. raise errors.AnsibleModuleError(
  204. 'Invalid secret in openshift_master_session_auth_secrets. '
  205. 'Secrets must be at least 32 characters in length.')
  206. for secret in ses:
  207. if len(secret) not in [16, 24, 32]:
  208. raise errors.AnsibleModuleError(
  209. 'Invalid secret in openshift_master_session_encryption_secrets. '
  210. 'Secrets must be 16, 24, or 32 characters in length.')
  211. return None
  212. def check_unsupported_nfs_configs(self, hostvars, host):
  213. """Fails if nfs storage is in use for any components. This check is
  214. ignored if openshift_enable_unsupported_configurations=True"""
  215. enable_unsupported = self.template_var(
  216. hostvars, host, 'openshift_enable_unsupported_configurations')
  217. if to_bool(enable_unsupported):
  218. return None
  219. for storage in STORAGE_KIND_TUPLE:
  220. kind = self.template_var(hostvars, host, storage)
  221. if kind == 'nfs':
  222. raise errors.AnsibleModuleError(
  223. 'nfs is an unsupported type for {}. '
  224. 'openshift_enable_unsupported_configurations=True must'
  225. 'be specified to continue with this configuration.'
  226. ''.format(storage))
  227. return None
  228. def check_htpasswd_provider(self, hostvars, host):
  229. """Fails if openshift_master_identity_providers contains an entry of
  230. kind HTPasswdPasswordIdentityProvider and
  231. openshift_master_manage_htpasswd is False"""
  232. idps = self.template_var(
  233. hostvars, host, 'openshift_master_identity_providers')
  234. if not idps:
  235. # If we don't find any identity_providers, nothing for us to do.
  236. return None
  237. manage_pass = self.template_var(
  238. hostvars, host, 'openshift_master_manage_htpasswd')
  239. if to_bool(manage_pass):
  240. # If we manage the file, we can just generate in the new path.
  241. return None
  242. old_keys = ('file', 'fileName', 'file_name', 'filename')
  243. for idp in idps:
  244. if idp['kind'] == 'HTPasswdPasswordIdentityProvider':
  245. for old_key in old_keys:
  246. if old_key in idp is not None:
  247. raise errors.AnsibleModuleError(
  248. 'openshift_master_identity_providers contains a '
  249. 'provider of kind==HTPasswdPasswordIdentityProvider '
  250. 'and {} is set. Please migrate your htpasswd '
  251. 'files to /etc/origin/master/htpasswd and update your '
  252. 'existing master configs, and remove the {} key'
  253. 'before proceeding.'.format(old_key, old_key))
  254. def check_contains_version(self, hostvars, host):
  255. """Fails if variable has old format not containing image version"""
  256. found_incorrect = []
  257. for img_var in CHANGED_IMAGE_VARS:
  258. img_string = self.template_var(hostvars, host, img_var)
  259. if not img_string:
  260. return None
  261. # split the image string by '/' to account for something like docker://
  262. img_string_parts = img_string.split('/')
  263. if ':' not in img_string_parts[-1]:
  264. found_incorrect.append((img_var, img_string))
  265. if found_incorrect:
  266. msg = ("Found image variables without version. Please ensure any image"
  267. "defined contains ':someversion'; ")
  268. for item in found_incorrect:
  269. msg += "{} was: {}; ".format(item[0], item[1])
  270. raise errors.AnsibleModuleError(msg)
  271. return None
  272. def run_checks(self, hostvars, host):
  273. """Execute the hostvars validations against host"""
  274. distro = self.template_var(hostvars, host, 'ansible_distribution')
  275. odt = self.check_openshift_deployment_type(hostvars, host)
  276. self.check_python_version(hostvars, host, distro)
  277. self.check_image_tag_format(hostvars, host, odt)
  278. self.network_plugin_check(hostvars, host)
  279. self.check_hostname_vars(hostvars, host)
  280. self.check_session_auth_secrets(hostvars, host)
  281. self.check_unsupported_nfs_configs(hostvars, host)
  282. self.check_htpasswd_provider(hostvars, host)
  283. check_for_removed_vars(hostvars, host)
  284. self.check_contains_version(hostvars, host)
  285. def run(self, tmp=None, task_vars=None):
  286. result = super(ActionModule, self).run(tmp, task_vars)
  287. # self.task_vars holds all in-scope variables.
  288. # Ignore settting self.task_vars outside of init.
  289. # pylint: disable=W0201
  290. self.task_vars = task_vars or {}
  291. # pylint: disable=W0201
  292. self.last_checked_host = "none"
  293. # pylint: disable=W0201
  294. self.last_checked_var = "none"
  295. # self._task.args holds task parameters.
  296. # check_hosts is a parameter to this plugin, and should provide
  297. # a list of hosts.
  298. check_hosts = self._task.args.get('check_hosts')
  299. if not check_hosts:
  300. msg = "check_hosts is required"
  301. raise errors.AnsibleModuleError(msg)
  302. # We need to access each host's variables
  303. hostvars = self.task_vars.get('hostvars')
  304. if not hostvars:
  305. msg = hostvars
  306. raise errors.AnsibleModuleError(msg)
  307. # We loop through each host in the provided list check_hosts
  308. for host in check_hosts:
  309. try:
  310. self.run_checks(hostvars, host)
  311. except Exception as uncaught_e:
  312. msg = "last_checked_host: {}, last_checked_var: {};"
  313. msg = msg.format(self.last_checked_host, self.last_checked_var)
  314. msg += str(uncaught_e)
  315. raise errors.AnsibleModuleError(msg)
  316. result["changed"] = False
  317. result["failed"] = False
  318. result["msg"] = "Sanity Checks passed"
  319. return result