.gitignore 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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/suites/argocd/argocd.test
  25. e2e/suites/flux/flux.test
  26. e2e/suites/provider/provider.test
  27. e2e/suites/generator/generator.test
  28. # tf ignores
  29. # Local .terraform directories
  30. **/.terraform/*
  31. # .tfstate files
  32. *.tfstate
  33. *.tfstate.*
  34. # Crash log files
  35. crash.log
  36. crash.*.log
  37. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  38. # password, private keys, and other secrets. These should not be part of version
  39. # control as they are data points which are potentially sensitive and subject
  40. # to change depending on the environment.
  41. #
  42. *.tfvars
  43. # Ignore override files as they are usually used to override resources locally and so
  44. # are not checked in
  45. override.tf
  46. override.tf.json
  47. *_override.tf
  48. *_override.tf.json
  49. # Include override files you do wish to add to version control using negated pattern
  50. #
  51. # !example_override.tf
  52. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  53. # example: *tfplan*
  54. # Ignore CLI configuration files
  55. .terraformrc
  56. terraform.rc
  57. **/secrets/**
  58. .terraform.lock.hcl
  59. tmp/
  60. tests/crds/*.yml
  61. .tilt-tmp
  62. # Common environment variables
  63. .env
  64. .env.local
  65. .env.development.local
  66. .env.test.local
  67. .env.production.local
  68. .envrc