You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.6 KiB

  1. ---
  2. # custom_cni network plugin configuration
  3. # There are two deployment options to choose from, select one
  4. ## OPTION 1 - Static manifest files
  5. ## With this option, referred manifest file will be deployed
  6. ## as if the `kubectl apply -f` method was used with it.
  7. #
  8. ## List of Kubernetes resource manifest files
  9. ## See tests/files/custom_cni/README.md for example
  10. # custom_cni_manifests: []
  11. ## OPTION 1 EXAMPLE - Cilium static manifests in Kubespray tree
  12. # custom_cni_manifests:
  13. # - "{{ playbook_dir }}/../tests/files/custom_cni/cilium.yaml"
  14. ## OPTION 2 - Helm chart application
  15. ## This allows the CNI backend to be deployed to Kubespray cluster
  16. ## as common Helm application.
  17. #
  18. ## Helm release name - how the local instance of deployed chart will be named
  19. # custom_cni_chart_release_name: ""
  20. #
  21. ## Kubernetes namespace to deploy into
  22. # custom_cni_chart_namespace: "kube-system"
  23. #
  24. ## Helm repository name - how the local record of Helm repository will be named
  25. # custom_cni_chart_repository_name: ""
  26. #
  27. ## Helm repository URL
  28. # custom_cni_chart_repository_url: ""
  29. #
  30. ## Helm chart reference - path to the chart in the repository
  31. # custom_cni_chart_ref: ""
  32. #
  33. ## Helm chart version
  34. # custom_cni_chart_version: ""
  35. #
  36. ## Custom Helm values to be used for deployment
  37. # custom_cni_chart_values: {}
  38. ## OPTION 2 EXAMPLE - Cilium deployed from official public Helm chart
  39. # custom_cni_chart_namespace: kube-system
  40. # custom_cni_chart_release_name: cilium
  41. # custom_cni_chart_repository_name: cilium
  42. # custom_cni_chart_repository_url: https://helm.cilium.io
  43. # custom_cni_chart_ref: cilium/cilium
  44. # custom_cni_chart_version: 1.14.3
  45. # custom_cni_chart_values:
  46. # cluster:
  47. # name: "cilium-demo"