-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.gitignore
45 lines (33 loc) · 997 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
bin
testbin/*
Dockerfile.cross
# Test binary, build with `go test -c`
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Kubernetes Generated files - skip generated files, except for vendored files
!vendor/**/zz_generated.*
# editor and IDE paraphernalia
.idea
*.swp
*.swo
*~
.vscode/
api
kind-kubeconfig*
# !!! Important !!!
# We need github/zncdatadev/operator-go api module to generate olm bundle manifest,
# but `operator-sdk generate kustomize manifests --apis-dir <api-dir>` must be run in the root directory
# and only finds the api module based on the go.mod file in the root directory.
# So we temporarily use `go mod vendor` to copy dependencies to the root directory to specify the api module for the operator-sdk.
# We do not need the vendor directory in the root directory, so we ignore it.
.vendor
deploy/helm/commons-operator-*
# Ignore chart-release directory
.cr-**