main.yaml 1.8 KB

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