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.

29 lines
1.1 KiB

  1. kind: ConfigMap
  2. apiVersion: v1
  3. metadata:
  4. name: cilium-config
  5. namespace: kube-system
  6. data:
  7. # This etcd-config contains the etcd endpoints of your cluster. If you use
  8. # TLS please make sure you uncomment the ca-file line and add the respective
  9. # certificate has a k8s secret, see explanation bellow in the comment labeled
  10. # "ETCD-CERT"
  11. etcd-config: |-
  12. ---
  13. endpoints:
  14. {% for ip_addr in etcd_access_addresses.split(',') %}
  15. - {{ ip_addr }}
  16. {% endfor %}
  17. #
  18. # In case you want to use TLS in etcd, uncomment the following line
  19. # and add the certificate as explained in the comment labeled "ETCD-CERT"
  20. ca-file: "{{ cilium_cert_dir }}/ca_cert.crt"
  21. #
  22. # In case you want client to server authentication, uncomment the following
  23. # lines and add the certificate and key in cilium-etcd-secrets bellow
  24. key-file: "{{ cilium_cert_dir }}/key.pem"
  25. cert-file: "{{ cilium_cert_dir }}/cert.crt"
  26. # If you want to run cilium in debug mode change this value to true
  27. debug: "{{ cilium_debug }}"
  28. disable-ipv4: "{{ cilium_disable_ipv4 }}"