router 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. # flake8: noqa
  2. # pylint: skip-file
  3. DOCUMENTATION = '''
  4. ---
  5. module: oc_adm_router
  6. short_description: Module to manage openshift router
  7. description:
  8. - Manage openshift router programmatically.
  9. options:
  10. state:
  11. description:
  12. - Whether to create or delete the router
  13. - present - create the router
  14. - absent - remove the router
  15. - list - return the current representation of a router
  16. required: false
  17. default: present
  18. choices:
  19. - present
  20. - absent
  21. aliases: []
  22. kubeconfig:
  23. description:
  24. - The path for the kubeconfig file to use for authentication
  25. required: false
  26. default: /etc/origin/master/admin.kubeconfig
  27. aliases: []
  28. debug:
  29. description:
  30. - Turn on debug output.
  31. required: false
  32. default: False
  33. aliases: []
  34. name:
  35. description:
  36. - The name of the router
  37. required: false
  38. default: router
  39. aliases: []
  40. namespace:
  41. description:
  42. - The namespace where to manage the router.
  43. required: false
  44. default: default
  45. aliases: []
  46. images:
  47. description:
  48. - The image to base this router on - ${component} will be replaced with --type
  49. required: 'openshift3/ose-${component}:${version}'
  50. default: None
  51. aliases: []
  52. latest_images:
  53. description:
  54. - If true, attempt to use the latest image for the registry instead of the latest release.
  55. required: false
  56. default: False
  57. aliases: []
  58. labels:
  59. description:
  60. - A set of labels to uniquely identify the registry and its components.
  61. required: false
  62. default: None
  63. aliases: []
  64. ports:
  65. description:
  66. - A list of strings in the 'port:port' format
  67. required: False
  68. default:
  69. - 80:80
  70. - 443:443
  71. aliases: []
  72. replicas:
  73. description:
  74. - The replication factor of the registry; commonly 2 when high availability is desired.
  75. required: False
  76. default: 1
  77. aliases: []
  78. selector:
  79. description:
  80. - Selector used to filter nodes on deployment. Used to run routers on a specific set of nodes.
  81. required: False
  82. default: None
  83. aliases: []
  84. service_account:
  85. description:
  86. - Name of the service account to use to run the router pod.
  87. required: False
  88. default: router
  89. aliases: []
  90. router_type:
  91. description:
  92. - The router image to use - if you specify --images this flag may be ignored.
  93. required: false
  94. default: haproxy-router
  95. aliases: []
  96. external_host:
  97. description:
  98. - If the underlying router implementation connects with an external host, this is the external host's hostname.
  99. required: false
  100. default: None
  101. aliases: []
  102. external_host_vserver:
  103. description:
  104. - If the underlying router implementation uses virtual servers, this is the name of the virtual server for HTTP connections.
  105. required: false
  106. default: None
  107. aliases: []
  108. external_host_insecure:
  109. description:
  110. - If the underlying router implementation connects with an external host
  111. - over a secure connection, this causes the router to skip strict certificate verification with the external host.
  112. required: false
  113. default: False
  114. aliases: []
  115. external_host_partition_path:
  116. description:
  117. - If the underlying router implementation uses partitions for control boundaries, this is the path to use for that partition.
  118. required: false
  119. default: None
  120. aliases: []
  121. external_host_username:
  122. description:
  123. - If the underlying router implementation connects with an external host, this is the username for authenticating with the external host.
  124. required: false
  125. default: None
  126. aliases: []
  127. external_host_password:
  128. description:
  129. - If the underlying router implementation connects with an external host, this is the password for authenticating with the external host.
  130. required: false
  131. default: None
  132. aliases: []
  133. external_host_private_key:
  134. description:
  135. - If the underlying router implementation requires an SSH private key, this is the path to the private key file.
  136. required: false
  137. default: None
  138. aliases: []
  139. author:
  140. - "Kenny Woodson <kwoodson@redhat.com>"
  141. extends_documentation_fragment:
  142. - There are some exceptions to note when doing the idempotency in this module.
  143. - The strategy is to use the oc adm router command to generate a default
  144. - configuration when creating or updating a router. Often times there
  145. - differences from the generated template and what is in memory in openshift.
  146. - We make exceptions to not check these specific values when comparing objects.
  147. - Here are a list of exceptions:
  148. - - DeploymentConfig:
  149. - dnsPolicy
  150. - terminationGracePeriodSeconds
  151. - restartPolicy
  152. - timeoutSeconds
  153. - livenessProbe
  154. - readinessProbe
  155. - terminationMessagePath
  156. - hostPort
  157. - defaultMode
  158. - Service:
  159. - portalIP
  160. - clusterIP
  161. - sessionAffinity
  162. - type
  163. - ServiceAccount:
  164. - secrets
  165. - imagePullSecrets
  166. '''
  167. EXAMPLES = '''
  168. - name: create routers
  169. oc_adm_router:
  170. name: router
  171. service_account: router
  172. replicas: 2
  173. namespace: default
  174. selector: type=infra
  175. cert_file: /etc/origin/master/named_certificates/router.crt
  176. key_file: /etc/origin/master/named_certificates/router.key
  177. cacert_file: /etc/origin/master/named_certificates/router.ca
  178. edits:
  179. - key: spec.strategy.rollingParams
  180. value:
  181. intervalSeconds: 1
  182. maxSurge: 50%
  183. maxUnavailable: 50%
  184. timeoutSeconds: 600
  185. updatePeriodSeconds: 1
  186. action: put
  187. - key: spec.template.spec.containers[0].resources.limits.memory
  188. value: 2G
  189. action: put
  190. - key: spec.template.spec.containers[0].resources.requests.memory
  191. value: 1G
  192. action: put
  193. - key: spec.template.spec.containers[0].env
  194. value:
  195. name: EXTENDED_VALIDATION
  196. value: 'false'
  197. action: update
  198. register: router_out
  199. run_once: True
  200. '''