Skip to content

Commit 1973b76

Browse files
authored
🌱 initial commit (#1)
Signed-off-by: batistein <[email protected]>
1 parent 2dba5cf commit 1973b76

File tree

65 files changed

+6318
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+6318
-0
lines changed

.dockerignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# More info: https://docs.docker.com/engine/reference/builder/#dockerignore-file
2+
# Ignore build and test binaries.
3+
bin/
4+
testbin/

.gitignore

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
2+
# Binaries for programs and plugins
3+
*.exe
4+
*.exe~
5+
*.dll
6+
*.so
7+
*.dylib
8+
bin
9+
hack/tools/bin
10+
testbin/*
11+
temp
12+
13+
# Test binary, build with `go test -c`
14+
*.test
15+
.coverage
16+
.cache
17+
.reports
18+
19+
# Output of the go coverage tool, specifically when used with LiteIDE
20+
*.out
21+
22+
# Kubernetes Generated files - skip generated files, except for vendored files
23+
!vendor/**/zz_generated.*
24+
25+
# editor and IDE paraphernalia
26+
.idea
27+
*.swp
28+
*.swo
29+
.DS_Store
30+
.envrc
31+
32+
# Tilt files.
33+
.tiltbuild
34+
/tilt.d
35+
tilt-settings.json
36+
tilt_config.json
37+
.clusterstack.yaml
38+
.cluster.yaml
39+
40+
# kubeconfigs
41+
./kind.kubeconfig
42+
./kubeconfig
43+
./.kubeconfig
44+
.workload-cluster-kubeconfig.yaml
45+
.mgt-cluster-kubeconfig.yaml
46+
47+
# Common editor / temporary files
48+
*~
49+
*.tmp
50+
tmp/
51+
.DS_Store
52+
53+
# Sample config files auto-generated by kubebuilder
54+
config/samples
55+
56+
# test results
57+
_artifacts
58+
59+
resp.json
60+
**manifest.json
61+
# test/releases/*/*.tgz.yaml
62+
63+
# release artifacts
64+
out
65+
_releasenotes
66+
67+
# Helm
68+
.helm
69+
70+
# Byte-compiled / optimized / DLL files
71+
__pycache__/
72+
*.py[cod]
73+
*$py.class
74+
/_output
75+
tmp_*
76+
main
77+
78+
# helm generated yamls
79+
*.tgz.yaml
80+
*.build.yaml

0 commit comments

Comments
 (0)