helm-vars.yml 441 B

12345678910111213141516171819
  1. ---
  2. clusterName: {{ clusters[cluster].name }}
  3. centralEndpoint: wss://{{ api_ep }}
  4. collector:
  5. collectionMethod: EBPF
  6. slimMode: false
  7. admissionControl:
  8. listenOnCreates: true
  9. listenOnUpdates: true
  10. listenOnEvents: true
  11. dynamic:
  12. scanInline: true
  13. disableBypass: false
  14. timeout: 10
  15. # This would have otherwise gone to "values-private.yaml"...
  16. imagePullSecrets:
  17. username: '{{ pull_user }}'
  18. password: '{{ pull_pass }}'
  19. ...