style_guide.adoc 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. // vim: ft=asciidoc
  2. = openshift-ansible Style Guide
  3. The purpose of this guide is to describe the preferred coding conventions used in this repository (both in ansible and python).
  4. It is important to note that this repository may not currently comply with all style guide rules, but the intention is that it will.
  5. All new pull requests created against this repository MUST comply with this guide.
  6. This style guide complies with https://www.ietf.org/rfc/rfc2119.txt[RFC2119].
  7. == Python
  8. === Python Maximum Line Length
  9. .Context:
  10. * https://www.python.org/dev/peps/pep-0008/#maximum-line-length[Python Pep8 Line Length]
  11. '''
  12. [cols="2v,v"]
  13. |===
  14. | **Rule**
  15. | All lines SHOULD be no longer than 80 characters.
  16. |===
  17. Every attempt SHOULD be made to comply with this soft line length limit, and only when it makes the code more readable should this be violated.
  18. Code readability is subjective, therefore pull-requests SHOULD still be merged, even if they violate this soft limit as it is up to the individual contributor to determine if they should violate the 80 character soft limit.
  19. '''
  20. [cols="2v,v"]
  21. |===
  22. | **Rule**
  23. | All lines MUST be no longer than 120 characters.
  24. |===
  25. This is a hard limit and is enforced by the build bot. This check MUST NOT be disabled.
  26. == Ansible
  27. === Ansible Global Variables
  28. Ansible global variables are defined as any variables outside of ansible roles. Examples include playbook variables, variables passed in on the cli, etc.
  29. '''
  30. [cols="2v,v"]
  31. |===
  32. | **Rule**
  33. | Global variables MUST have a prefix of g_
  34. |===
  35. Example:
  36. [source]
  37. ----
  38. g_environment: someval
  39. ----
  40. === Ansible Role Variables
  41. Ansible role variables are defined as variables contained in (or passed into) a role.
  42. '''
  43. [cols="2v,v"]
  44. |===
  45. | **Rule**
  46. | Role variables MUST have a prefix of atleast 3 characters. See below for specific naming rules.
  47. |===
  48. ==== Role with 3 (or more) words in the name
  49. Take the first letter of each of the words.
  50. .3 word example:
  51. * Role name: made_up_role
  52. * Prefix: mur
  53. [source]
  54. ----
  55. mur_var1: value_one
  56. ----
  57. .4 word example:
  58. * Role name: totally_made_up_role
  59. * Prefix: tmur
  60. [source]
  61. ----
  62. tmur_var1: value_one
  63. ----
  64. ==== Role with 2 (or less) words in the name
  65. Make up a prefix that makes sense.
  66. .1 word example:
  67. * Role name: ansible
  68. * Prefix: ans
  69. [source]
  70. ----
  71. ans_var1: value_one
  72. ----
  73. .2 word example:
  74. * Role name: ansible_tower
  75. * Prefix: tow
  76. [source]
  77. ----
  78. tow_var1: value_one
  79. ----
  80. ==== Role name prefix conflicts
  81. If two role names contain words that start with the same letters, it will seem like their prefixes would conflict.
  82. 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).
  83. .Same prefix example:
  84. * First Role Name: made_up_role
  85. * First Role Prefix: mur
  86. * Second Role Name: my_uber_role
  87. * Second Role Prefix: mur
  88. [source]
  89. ----
  90. - hosts: localhost
  91. roles:
  92. - { role: made_up_role, mur_var1: val1 }
  93. - { role: my_uber_role, mur_var1: val2 }
  94. ----
  95. 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.
  96. 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.
  97. This is enough of a corner case that it is unlikely to happen. If it does, it will be addressed on a case by case basis.