main.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ---
  2. # Kuryr conf directory
  3. kuryr_config_dir: /etc/kuryr
  4. # Kuryr username
  5. kuryr_openstack_username: kuryr
  6. # Kuryr domain name or id containing user
  7. kuryr_openstack_user_domain_name: default
  8. # Kuryr domain name or id containing project
  9. kuryr_openstack_project_domain_name: default
  10. # Kuryr OpenShift namespace
  11. kuryr_namespace: openshift-infra
  12. # Kuryr health check server port
  13. kuryr_controller_healthcheck_port: 8082
  14. kuryr_cni_healthcheck_port: 8090
  15. # Whether to run the cni plugin in debug mode
  16. kuryr_cni_debug: "false"
  17. # Default pod-in-VM link interface
  18. kuryr_cni_link_interface: eth0
  19. # The version of cni binaries
  20. cni_version: v0.5.2
  21. # Path to bin dir (where kuryr execs get installed)
  22. bin_dir: /usr/bin
  23. # Default controller and CNI images
  24. openshift_openstack_kuryr_controller_image: kuryr/controller:latest
  25. openshift_openstack_kuryr_cni_image: kuryr/cni:latest
  26. # Enable kuryr ports pool by default
  27. kuryr_openstack_pool_driver: nested
  28. # Enable kuryr healthchecks probes by default
  29. enable_kuryr_controller_probes: True
  30. enable_kuryr_cni_probes: True
  31. # Path to the cni binaries
  32. cni_bin_dir: /opt/cni/bin
  33. # URL for cni binaries
  34. cni_bin_url_base: "https://github.com/containernetworking/cni/releases/download/"
  35. cni_bin_url: "{{ cni_bin_url_base }}/{{ cni_version }}/cni-{{ cni_version }}.tgz"
  36. cni_bin_checksum: "71f411080245aa14d0cc06f6824e8039607dd9e9"
  37. # Kuryr ClusterRole definition
  38. kuryr_clusterrole:
  39. name: kuryrctl
  40. state: present
  41. rules:
  42. - apiGroups:
  43. - ""
  44. attributeRestrictions: null
  45. verbs:
  46. - get
  47. - list
  48. - watch
  49. resources:
  50. - daemonsets
  51. - deployments
  52. - deploymentconfigs
  53. - endpoints
  54. - ingress
  55. - nodes
  56. - namespaces
  57. - pods
  58. - projects
  59. - routes
  60. - services
  61. - apiGroups:
  62. - ""
  63. attributeRestrictions: null
  64. verbs:
  65. - update
  66. - patch
  67. resources:
  68. - endpoints
  69. - ingress
  70. - pods
  71. - namespaces
  72. - nodes
  73. - services
  74. - services/status
  75. - routes