mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-10 21:03:12 +01:00
Running e2e tests generates temporary kustomization.yaml files. The uncommitted ci task would fail if it finds one of these during its run, so we add the path to the .gitignore. Fixes #111 Signed-off-by: Francesco Canovai <francesco.canovai@enterprisedb.com>
46 lines
688 B
Plaintext
46 lines
688 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
bin/*
|
|
Dockerfile.cross
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Kubernetes Generated files - skip generated files, except for vendored files
|
|
!vendor/**/zz_generated.*
|
|
|
|
# editor and IDE paraphernalia
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Taskfile cache
|
|
.task
|
|
|
|
# E2e test artifacts
|
|
test/e2e/bin
|
|
test/e2e/kustomization.yaml
|
|
|
|
# Test registry certificates
|
|
certs/
|
|
# Utility dir for manifest build
|
|
manifest-build/
|