.gitignore 460 B

123456789101112131415161718192021222324252627282930
  1. # Binaries for programs and plugins
  2. *.exe
  3. *.exe~
  4. *.dll
  5. *.so
  6. *.dylib
  7. bin/*
  8. Dockerfile.cross
  9. # Test binary, built with `go test -c`
  10. *.test
  11. # Output of the go coverage tool, specifically when used with LiteIDE
  12. *.out
  13. # Go workspace file
  14. go.work
  15. # Kubernetes Generated files - skip generated files, except for vendored files
  16. !vendor/**/zz_generated.*
  17. # editor and IDE paraphernalia
  18. .idea
  19. .vscode
  20. *.swp
  21. *.swo
  22. *~
  23. # Kubeconfig might contain secrets
  24. *.kubeconfig