main.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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_healthcheck_port: 8082
  14. # Whether to run the cni plugin in debug mode
  15. kuryr_cni_debug: "false"
  16. # Default pod-in-VM link interface
  17. kuryr_cni_link_interface: eth0
  18. # The version of cni binaries
  19. cni_version: v0.5.2
  20. # Path to bin dir (where kuryr execs get installed)
  21. bin_dir: /usr/bin
  22. # Default controller and CNI images
  23. openshift_openstack_kuryr_controller_image: kuryr/controller:latest
  24. openshift_openstack_kuryr_cni_image: kuryr/cni:latest
  25. # Enable kuryr ports pool by default
  26. kuryr_openstack_pool_driver: nested
  27. # Enable kuryr healthchecks probes by default
  28. enable_kuryr_controller_probes: True
  29. enable_kuryr_cni_probes: True
  30. # Path to the cni binaries
  31. cni_bin_dir: /opt/cni/bin
  32. # URL for cni binaries
  33. cni_bin_url_base: "https://github.com/containernetworking/cni/releases/download/"
  34. cni_bin_url: "{{ cni_bin_url_base }}/{{ cni_version }}/cni-{{ cni_version }}.tgz"
  35. cni_bin_checksum: "71f411080245aa14d0cc06f6824e8039607dd9e9"
  36. # Kuryr ClusterRole definition
  37. kuryr_clusterrole:
  38. name: kuryrctl
  39. state: present
  40. rules:
  41. - apiGroups:
  42. - ""
  43. attributeRestrictions: null
  44. verbs:
  45. - get
  46. - list
  47. - watch
  48. resources:
  49. - daemonsets
  50. - deployments
  51. - deploymentconfigs
  52. - endpoints
  53. - ingress
  54. - nodes
  55. - namespaces
  56. - pods
  57. - projects
  58. - routes
  59. - services
  60. - apiGroups:
  61. - ""
  62. attributeRestrictions: null
  63. verbs:
  64. - update
  65. - patch
  66. resources:
  67. - endpoints
  68. - ingress
  69. - pods
  70. - namespaces
  71. - nodes
  72. - services
  73. - services/status
  74. - routes