.gitignore 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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 go workspace
  10. go.work
  11. go.work.sum
  12. # ignore vim swp
  13. *.swp
  14. # ignore ide files (debug config etc...)
  15. /.vscode
  16. /.idea
  17. # helm chart dependencies
  18. **/charts/*.tgz
  19. **/charts/**/requirements.lock
  20. .tagmanifest
  21. deploy/charts/external-secrets/templates/crds/*.yaml
  22. site/
  23. e2e/k8s/deploy
  24. e2e/image-artifacts/
  25. e2e/suites/argocd/argocd.test
  26. e2e/suites/flux/flux.test
  27. e2e/suites/provider/provider.test
  28. e2e/suites/generator/generator.test
  29. # python bytecode cache (e.g. from e2e/matrix.py)
  30. __pycache__/
  31. *.pyc
  32. # tf ignores
  33. # Local .terraform directories
  34. **/.terraform/*
  35. # .tfstate files
  36. *.tfstate
  37. *.tfstate.*
  38. # Crash log files
  39. crash.log
  40. crash.*.log
  41. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  42. # password, private keys, and other secrets. These should not be part of version
  43. # control as they are data points which are potentially sensitive and subject
  44. # to change depending on the environment.
  45. #
  46. *.tfvars
  47. # Ignore override files as they are usually used to override resources locally and so
  48. # are not checked in
  49. override.tf
  50. override.tf.json
  51. *_override.tf
  52. *_override.tf.json
  53. # Include override files you do wish to add to version control using negated pattern
  54. #
  55. # !example_override.tf
  56. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  57. # example: *tfplan*
  58. # Ignore CLI configuration files
  59. .terraformrc
  60. terraform.rc
  61. **/secrets/**
  62. .terraform.lock.hcl
  63. tmp/
  64. tests/crds/*.yml
  65. .tilt-tmp
  66. # Common environment variables
  67. .env
  68. .env.local
  69. .env.development.local
  70. .env.test.local
  71. .env.production.local
  72. .envrc