style_guide.adoc 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. // vim: ft=asciidoc
  2. = Openshift-Ansible Style Guide
  3. -----------------------------
  4. The purpose of this guide is to describe the preferred coding conventions used in this repository (both in ansible and python).
  5. It is important to note that this repository may not currently comply with all style guide rules, but our intention is that it will.
  6. All new pull requests created against this repository MUST comply with this guide.
  7. This style guide complies with https://www.ietf.org/rfc/rfc2119.txt[RFC2119].
  8. == Ansible Variable Naming
  9. === Global Variables
  10. We define Ansible global variables as any variables outside of ansible roles. Examples include playbook variables, variables passed in on the cli, etc.
  11. '''
  12. [cols="2v,v"]
  13. |===
  14. | **Rule**
  15. | Global variables MUST have a prefix of g_
  16. |===
  17. Example:
  18. [source]
  19. ----
  20. g_environment: someval
  21. ----
  22. ==== Role Variables
  23. We define Ansible role variables as variables contained in (or passed into) a role.
  24. '''
  25. [cols="2v,v"]
  26. |===
  27. | **Rule**
  28. | Role variables MUST have a prefix of atleast 3 characters. See below for specific naming rules.
  29. |===
  30. ===== Role with 3 (or more) words in the name
  31. Take the first letter of each of the words.
  32. .3 word example:
  33. * Role name: made_up_role
  34. * Prefix: mur
  35. [source]
  36. ----
  37. mur_var1: value_one
  38. ----
  39. .4 word example:
  40. * Role name: totally_made_up_role
  41. * Prefix: tmur
  42. [source]
  43. ----
  44. tmur_var1: value_one
  45. ----
  46. ===== Role with 2 (or less) words in the name
  47. Make up a prefix that makes sense.
  48. .1 word example:
  49. * Role name: ansible
  50. * Prefix: ans
  51. [source]
  52. ----
  53. ans_var1: value_one
  54. ----
  55. .2 word example:
  56. * Role name: ansible_tower
  57. * Prefix: tow
  58. [source]
  59. ----
  60. tow_var1: value_one
  61. ----
  62. ===== Role name prefix conflicts
  63. If two role names contain words that start with the same letters, it will seem like their prefixes would conflict.
  64. Role variables are confined to the roles themselves, so this is actually only a problem if one of the roles depends on the other role (or uses includes into the other role).
  65. .Same prefix example:
  66. * First Role Name: made_up_role
  67. * First Role Prefix: mur
  68. * Second Role Name: my_uber_role
  69. * Second Role Prefix: mur
  70. [source]
  71. ----
  72. - hosts: localhost
  73. roles:
  74. - { role: made_up_role, mur_var1: val1 }
  75. - { role: my_uber_role, mur_var1: val2 }
  76. ----
  77. Even though both roles have the same prefix (mur), and even though both roles have a variable named mur_var1, these two variables never exist outside of their respective roles. This means that this is not a problem.
  78. This would only be a problem if my_uber_role depended on made_up_role, or vice versa. Or if either of these two roles included things from the other.
  79. We think this is enough of a corner case that it is unlikely to happen. If it does, we will address it on a case by case basis.