best_practices_guide.adoc 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515
  1. // vim: ft=asciidoc
  2. = openshift-ansible Best Practices Guide
  3. The purpose of this guide is to describe the preferred patterns and best practices used in this repository (both in ansible and python).
  4. It is important to note that this repository may not currently comply with all best practices, but the intention is that it will.
  5. All new pull requests created against this repository MUST comply with this guide.
  6. This guide complies with https://www.ietf.org/rfc/rfc2119.txt[RFC2119].
  7. == Pull Requests
  8. [cols="2v,v"]
  9. |===
  10. | **Rule**
  11. | All pull requests MUST pass the build bot *before* they are merged.
  12. |===
  13. The purpose of this rule is to avoid cases where the build bot will fail pull requests for code modified in a previous pull request.
  14. The tooling is flexible enough that exceptions can be made so that the tool the build bot is running will ignore certain areas or certain checks, but the build bot itself must pass for the pull request to be merged.
  15. == Python
  16. === Python Source Files
  17. '''
  18. [cols="2v,v"]
  19. |===
  20. | **Rule**
  21. | Python source files MUST contain the following vim mode line.
  22. |===
  23. [source]
  24. ----
  25. # vim: expandtab:tabstop=4:shiftwidth=4
  26. ----
  27. Since most developers contributing to this repository use vim, this rule helps to promote consistency.
  28. If mode lines for other editors are needed, please open a GitHub issue.
  29. === Method Signatures
  30. '''
  31. [cols="2v,v"]
  32. |===
  33. | **Rule**
  34. | When adding a new paramemter to an existing method, a default value SHOULD be used
  35. |===
  36. The purpose of this rule is to make it so that method signatures are backwards compatible.
  37. If this rule isn't followed, it will be necessary for the person who changed the method to search out all callers and make sure that they're able to use the new method signature.
  38. .Before:
  39. [source,python]
  40. ----
  41. def add_person(first_name, last_name):
  42. ----
  43. .After:
  44. [source,python]
  45. ----
  46. def add_person(first_name, last_name, age=None):
  47. ----
  48. === PyLint
  49. http://www.pylint.org/[PyLint] is used in an attempt to keep the python code as clean and as managable as possible. The build bot runs each pull request through PyLint and any warnings or errors cause the build bot to fail the pull request.
  50. '''
  51. [cols="2v,v"]
  52. |===
  53. | **Rule**
  54. | PyLint rules MUST NOT be disabled on a whole file.
  55. |===
  56. Instead, http://docs.pylint.org/faq.html#is-it-possible-to-locally-disable-a-particular-message[disable the PyLint check on the line where PyLint is complaining].
  57. '''
  58. [cols="2v,v"]
  59. |===
  60. | **Rule**
  61. | PyLint rules MUST NOT be disabled unless they meet one of the following exceptions
  62. |===
  63. .Exceptions:
  64. 1. When PyLint fails because of a dependency that can't be installed on the build bot
  65. 1. When PyLint fails because of including a module that is outside of control (like Ansible)
  66. 1. When PyLint fails, but the code makes more sense the way it is formatted (stylistic exception). For this exception, the description of the PyLint disable MUST state why the code is more clear, AND the person reviewing the PR will decide if they agree or not. The reviewer may reject the PR if they disagree with the reason for the disable.
  67. '''
  68. [cols="2v,v"]
  69. |===
  70. | **Rule**
  71. | All PyLint rule disables MUST be documented in the code.
  72. |===
  73. The purpose of this rule is to inform future developers about the disable.
  74. .Specifically, the following MUST accompany every PyLint disable:
  75. 1. Why is the check being disabled?
  76. 1. Is disabling this check meant to be permanent or temporary?
  77. .Example:
  78. [source,python]
  79. ----
  80. # Reason: disable pylint maybe-no-member because overloaded use of
  81. # the module name causes pylint to not detect that 'results'
  82. # is an array or hash
  83. # Status: permanently disabled unless a way is found to fix this.
  84. # pylint: disable=maybe-no-member
  85. metadata[line] = results.pop()
  86. ----
  87. == Ansible
  88. === Yaml Files (Playbooks, Roles, Vars, etc)
  89. '''
  90. [cols="2v,v"]
  91. |===
  92. | **Rule**
  93. | Ansible files SHOULD NOT use JSON (use pure YAML instead).
  94. |===
  95. YAML is a superset of JSON, which means that Ansible allows JSON syntax to be interspersed. Even though YAML (and by extension Ansible) allows for this, JSON SHOULD NOT be used.
  96. .Reasons:
  97. * Ansible is able to give clearer error messages when the files are pure YAML
  98. * YAML reads nicer (preference held by several team members)
  99. * YAML makes for nicer diffs as YAML tends to be multi-line, whereas JSON tends to be more concise
  100. .Exceptions:
  101. * Ansible static inventory files are INI files. To pass in variables for specific hosts, Ansible allows for these variables to be put inside of the static inventory files. These variables can be in JSON format, but can't be in YAML format. This is an acceptable use of JSON, as YAML is not allowed in this case.
  102. Every effort should be made to keep our Ansible YAML files in pure YAML.
  103. === Modules
  104. '''
  105. [cols="2v,v"]
  106. |===
  107. | **Rule**
  108. | Custom Ansible modules SHOULD be embedded in a role.
  109. |===
  110. .Context
  111. * http://docs.ansible.com/ansible/playbooks_roles.html#embedding-modules-in-roles[Ansible doc on how to embed modules in roles]
  112. The purpose of this rule is to make it easy to include custom modules in our playbooks and share them on Ansible Galaxy.
  113. .Custom module `openshift_facts.py` is embedded in the `openshift_facts` role.
  114. ----
  115. > ll openshift-ansible/roles/openshift_facts/library/
  116. -rwxrwxr-x. 1 user group 33616 Jul 22 09:36 openshift_facts.py
  117. ----
  118. .Custom module `openshift_facts` can be used after `openshift_facts` role has been referenced.
  119. [source,yaml]
  120. ----
  121. - hosts: openshift_hosts
  122. gather_facts: no
  123. roles:
  124. - role: openshift_facts
  125. post_tasks:
  126. - openshift_facts
  127. role: common
  128. hostname: host
  129. public_hostname: host.example.com
  130. ----
  131. '''
  132. [cols="2v,v"]
  133. |===
  134. | **Rule**
  135. | Parameters to Ansible modules SHOULD use the Yaml dictionary format when 3 or more parameters are being passed
  136. |===
  137. When a module has several parameters that are being passed in, it's hard to see exactly what value each parameter is getting. It is preferred to use the Ansible Yaml syntax to pass in parameters so that it's more clear what values are being passed for each paramemter.
  138. .Bad:
  139. [source,yaml]
  140. ----
  141. - file: src=/file/to/link/to dest=/path/to/symlink owner=foo group=foo state=link
  142. ----
  143. .Good:
  144. [source,yaml]
  145. ----
  146. - file:
  147. src: /file/to/link/to
  148. dest: /path/to/symlink
  149. owner: foo
  150. group: foo
  151. state: link
  152. ----
  153. '''
  154. [cols="2v,v"]
  155. |===
  156. | **Rule**
  157. | Parameters to Ansible modules SHOULD use the Yaml dictionary format when the line length exceeds 120 characters
  158. |===
  159. Lines that are long quickly become a wall of text that isn't easily parsable. It is preferred to use the Ansible Yaml syntax to pass in parameters so that it's more clear what values are being passed for each paramemter.
  160. .Bad:
  161. [source,yaml]
  162. ----
  163. - get_url: url=http://example.com/path/file.conf dest=/etc/foo.conf sha256sum=b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
  164. ----
  165. .Good:
  166. [source,yaml]
  167. ----
  168. - get_url:
  169. url: http://example.com/path/file.conf
  170. dest: /etc/foo.conf
  171. sha256sum: b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c
  172. ----
  173. '''
  174. [cols="2v,v"]
  175. |===
  176. | **Rule**
  177. | The Ansible `command` module SHOULD be used instead of the Ansible `shell` module.
  178. |===
  179. .Context
  180. * http://docs.ansible.com/shell_module.html#notes[Ansible doc on why using the command module is a best practice]
  181. The Ansible `shell` module can run most commands that can be run from a bash CLI. This makes it extremely powerful, but it also opens our playbooks up to being exploited by attackers.
  182. .Bad:
  183. [source,yaml]
  184. ----
  185. - shell: "/bin/echo {{ cli_var }}"
  186. ----
  187. .Better:
  188. [source,yaml]
  189. ----
  190. - command: "/bin/echo {{ cli_var }}"
  191. ----
  192. '''
  193. [cols="2v,v"]
  194. |===
  195. | **Rule**
  196. | The Ansible `quote` filter MUST be used with any variable passed into the shell module.
  197. |===
  198. .Context
  199. * http://docs.ansible.com/shell_module.html#notes[Ansible doc describing why to use the quote filter]
  200. It is recommended not to use the `shell` module. However, if it absolutely must be used, all variables passed into the `shell` module MUST use the `quote` filter to ensure they are shell safe.
  201. .Bad:
  202. [source,yaml]
  203. ----
  204. - shell: "/bin/echo {{ cli_var }}"
  205. ----
  206. .Good:
  207. [source,yaml]
  208. ----
  209. - shell: "/bin/echo {{ cli_var | quote }}"
  210. ----
  211. === Defensive Programming
  212. .Context
  213. * http://docs.ansible.com/fail_module.html[Ansible Fail Module]
  214. '''
  215. [cols="2v,v"]
  216. |===
  217. | **Rule**
  218. | Ansible playbooks MUST begin with checks for any variables that they require.
  219. |===
  220. If an Ansible playbook requires certain variables to be set, it's best to check for these up front before any other actions have been performed. In this way, the user knows exactly what needs to be passed into the playbook.
  221. .Example:
  222. [source,yaml]
  223. ----
  224. ---
  225. - hosts: localhost
  226. gather_facts: no
  227. tasks:
  228. - fail: msg="This playbook requires g_environment to be set and non empty"
  229. when: g_environment is not defined or g_environment == ''
  230. ----
  231. '''
  232. [cols="2v,v"]
  233. |===
  234. | **Rule**
  235. | Ansible roles tasks/main.yml file MUST begin with checks for any variables that they require.
  236. |===
  237. If an Ansible role requires certain variables to be set, it's best to check for these up front before any other actions have been performed. In this way, the user knows exactly what needs to be passed into the role.
  238. .Example:
  239. [source,yaml]
  240. ----
  241. ---
  242. # tasks/main.yml
  243. - fail: msg="This role requires arl_environment to be set and non empty"
  244. when: arl_environment is not defined or arl_environment == ''
  245. ----
  246. === Tasks
  247. '''
  248. [cols="2v,v"]
  249. |===
  250. | **Rule**
  251. | Ansible tasks SHOULD NOT be used in ansible playbooks. Instead, use pre_tasks and post_tasks.
  252. |===
  253. An Ansible play is defined as a Yaml dictionary. Because of that, ansible doesn't know if the play's tasks list or roles list was specified first. Therefore Ansible always runs tasks after roles.
  254. This can be quite confusing if the tasks list is defined in the playbook before the roles list because people assume in order execution in Ansible.
  255. Therefore, we SHOULD use pre_tasks and post_tasks to make it more clear when the tasks will be run.
  256. .Context
  257. * https://docs.ansible.com/playbooks_roles.html[Ansible documentation on pre_tasks and post_tasks]
  258. .Bad:
  259. [source,yaml]
  260. ----
  261. ---
  262. # playbook.yml
  263. - hosts: localhost
  264. gather_facts: no
  265. tasks:
  266. - name: This will execute AFTER the example_role, so it's confusing
  267. debug: msg="in tasks list"
  268. roles:
  269. - role: example_role
  270. # roles/example_role/tasks/main.yml
  271. - debug: msg="in example_role"
  272. ----
  273. .Good:
  274. [source,yaml]
  275. ----
  276. ---
  277. # playbook.yml
  278. - hosts: localhost
  279. gather_facts: no
  280. pre_tasks:
  281. - name: This will execute BEFORE the example_role, so it makes sense
  282. debug: msg="in pre_tasks list"
  283. roles:
  284. - role: example_role
  285. # roles/example_role/tasks/main.yml
  286. - debug: msg="in example_role"
  287. ----
  288. === Roles
  289. '''
  290. [cols="2v,v"]
  291. |===
  292. | **Rule**
  293. | All tasks in a role SHOULD be tagged with the role name.
  294. |===
  295. .Context
  296. * http://docs.ansible.com/playbooks_tags.html[Ansible doc explaining tags]
  297. Ansible tasks can be tagged, and then these tags can be used to either _run_ or _skip_ the tagged tasks using the `--tags` and `--skip-tags` ansible-playbook options respectively.
  298. This is very useful when developing and debugging new tasks. It can also significantly speed up playbook runs if the user specifies only the roles that changed.
  299. .Example:
  300. [source,yaml]
  301. ----
  302. ---
  303. # roles/example_role/tasks/main.yml
  304. - debug: msg="in example_role"
  305. tags:
  306. - example_role
  307. ----
  308. '''
  309. [cols="2v,v"]
  310. |===
  311. | **Rule**
  312. | The Ansible roles directory MUST maintain a flat structure.
  313. |===
  314. .Context
  315. * http://docs.ansible.com/playbooks_best_practices.html#directory-layout[Ansible Suggested Directory Layout]
  316. .The purpose of this rule is to:
  317. * Comply with the upstream best practices
  318. * Make it familiar for new contributors
  319. * Make it compatible with Ansible Galaxy
  320. '''
  321. [cols="2v,v"]
  322. |===
  323. | **Rule**
  324. | Ansible Roles SHOULD be named like technology_component[_subcomponent].
  325. |===
  326. For consistency, role names SHOULD follow the above naming pattern. It is important to note that this is a recommendation for role naming, and follows the pattern used by upstream.
  327. Many times the `technology` portion of the pattern will line up with a package name. It is advised that whenever possible, the package name should be used.
  328. .Examples:
  329. * The role to configure a master is called `openshift_master`
  330. * The role to configure OpenShift specific yum repositories is called `openshift_repos`
  331. === Filters
  332. .Context:
  333. * https://docs.ansible.com/playbooks_filters.html[Ansible Playbook Filters]
  334. * http://jinja.pocoo.org/docs/dev/templates/#builtin-filters[Jinja2 Builtin Filters]
  335. '''
  336. [cols="2v,v"]
  337. |===
  338. | **Rule**
  339. | The `default` filter SHOULD replace empty strings, lists, etc.
  340. |===
  341. When using the jinja2 `default` filter, unless the variable is a boolean, specify `true` as the second parameter. This will cause the default filter to replace empty strings, lists, etc with the provided default.
  342. This is because it is preferable to either have a sane default set than to have an empty string, list, etc. For example, it is preferable to have a config value set to a sane default than to have it simply set as an empty string.
  343. .From the http://jinja.pocoo.org/docs/dev/templates/[Jinja2 Docs]:
  344. [quote]
  345. If you want to use default with variables that evaluate to false you have to set the second parameter to true
  346. .Example:
  347. [source,yaml]
  348. ----
  349. ---
  350. - hosts: localhost
  351. gather_facts: no
  352. vars:
  353. somevar: ''
  354. tasks:
  355. - debug: var=somevar
  356. - name: "Will output 'somevar: []'"
  357. debug: "msg='somevar: [{{ somevar | default('the string was empty') }}]'"
  358. - name: "Will output 'somevar: [the string was empty]'"
  359. debug: "msg='somevar: [{{ somevar | default('the string was empty', true) }}]'"
  360. ----
  361. In other words, normally the `default` filter will only replace the value if it's undefined. By setting the second parameter to `true`, it will also replace the value if it defaults to a false value in python, so None, empty list, empty string, etc.
  362. This is almost always more desirable than an empty list, string, etc.
  363. === Yum and DNF
  364. '''
  365. [cols="2v,v"]
  366. |===
  367. | **Rule**
  368. | Package installation MUST use ansible action module to abstract away dnf/yum.
  369. | Package installation MUST use name= and state=present rather than pkg= and state=installed respectively.
  370. |===
  371. [cols="2v,v"]
  372. |===
  373. | **Rule**
  374. | Package installation MUST use name= and state=present rather than pkg= and state=installed respectively.
  375. |===
  376. This is done primarily because if you're registering the result of the
  377. installation and you have two conditional tasks based on whether or not yum or
  378. dnf are in use you'll end up inadvertently overwriting the value. It also
  379. reduces duplication. name= and state=present are common between dnf and yum
  380. modules.
  381. .Bad:
  382. [source,yaml]
  383. ----
  384. ---
  385. # tasks.yml
  386. - name: Install etcd (for etcdctl)
  387. yum: name=etcd state=latest"
  388. when: "ansible_pkg_mgr == yum"
  389. register: install_result
  390. - name: Install etcd (for etcdctl)
  391. dnf: name=etcd state=latest"
  392. when: "ansible_pkg_mgr == dnf"
  393. register: install_result
  394. ----
  395. .Good:
  396. [source,yaml]
  397. ----
  398. ---
  399. # tasks.yml
  400. - name: Install etcd (for etcdctl)
  401. action: "{{ ansible_pkg_mgr }} name=etcd state=latest"
  402. register: install_result
  403. ----