.gitignore 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .DS_Store
  2. /webhook/bin
  3. /webhook/certcontroller/bin
  4. /bin
  5. /cmd/esoctl/bin
  6. /cmd/esoctl/dist
  7. /vendor
  8. cover.out
  9. # ignore vim swp
  10. *.swp
  11. # ignore ide files (debug config etc...)
  12. /.vscode
  13. /.idea
  14. # helm chart dependencies
  15. **/charts/*.tgz
  16. **/charts/**/requirements.lock
  17. .tagmanifest
  18. deploy/charts/external-secrets/templates/crds/*.yaml
  19. site/
  20. e2e/k8s/deploy
  21. e2e/suites/argocd/argocd.test
  22. e2e/suites/flux/flux.test
  23. e2e/suites/provider/provider.test
  24. e2e/suites/generator/generator.test
  25. # tf ignores
  26. # Local .terraform directories
  27. **/.terraform/*
  28. # .tfstate files
  29. *.tfstate
  30. *.tfstate.*
  31. # Crash log files
  32. crash.log
  33. crash.*.log
  34. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  35. # password, private keys, and other secrets. These should not be part of version
  36. # control as they are data points which are potentially sensitive and subject
  37. # to change depending on the environment.
  38. #
  39. *.tfvars
  40. # Ignore override files as they are usually used to override resources locally and so
  41. # are not checked in
  42. override.tf
  43. override.tf.json
  44. *_override.tf
  45. *_override.tf.json
  46. # Include override files you do wish to add to version control using negated pattern
  47. #
  48. # !example_override.tf
  49. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  50. # example: *tfplan*
  51. # Ignore CLI configuration files
  52. .terraformrc
  53. terraform.rc
  54. **/secrets/**
  55. .terraform.lock.hcl
  56. tmp/
  57. tests/crds/*.yml
  58. .tilt-tmp
  59. # Common environment variables
  60. .env
  61. .env.local
  62. .env.development.local
  63. .env.test.local
  64. .env.production.local
  65. .envrc