Skip to content
This repository was archived by the owner on Nov 18, 2020. It is now read-only.

Commit 9dedad4

Browse files
authored
memcached-operator: add memcached-operator example (#25)
* memcached-operator: add memcached-operator example This is based on the example in the operator-sdk user-guide and also includes example tests using the test framework. * test/e2e/memcached_test.go: modify imports * README.md: add readme
1 parent aed6c3b commit 9dedad4

File tree

22 files changed

+1534
-0
lines changed

22 files changed

+1534
-0
lines changed

memcached-operator/.gitignore

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
2+
# Temporary Build Files
3+
tmp/_output
4+
tmp/_test
5+
6+
7+
# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
8+
9+
### Emacs ###
10+
# -*- mode: gitignore; -*-
11+
*~
12+
\#*\#
13+
/.emacs.desktop
14+
/.emacs.desktop.lock
15+
*.elc
16+
auto-save-list
17+
tramp
18+
.\#*
19+
20+
# Org-mode
21+
.org-id-locations
22+
*_archive
23+
24+
# flymake-mode
25+
*_flymake.*
26+
27+
# eshell files
28+
/eshell/history
29+
/eshell/lastdir
30+
31+
# elpa packages
32+
/elpa/
33+
34+
# reftex files
35+
*.rel
36+
37+
# AUCTeX auto folder
38+
/auto/
39+
40+
# cask packages
41+
.cask/
42+
dist/
43+
44+
# Flycheck
45+
flycheck_*.el
46+
47+
# server auth directory
48+
/server/
49+
50+
# projectiles files
51+
.projectile
52+
projectile-bookmarks.eld
53+
54+
# directory configuration
55+
.dir-locals.el
56+
57+
# saveplace
58+
places
59+
60+
# url cache
61+
url/cache/
62+
63+
# cedet
64+
ede-projects.el
65+
66+
# smex
67+
smex-items
68+
69+
# company-statistics
70+
company-statistics-cache.el
71+
72+
# anaconda-mode
73+
anaconda-mode/
74+
75+
### Go ###
76+
# Binaries for programs and plugins
77+
*.exe
78+
*.exe~
79+
*.dll
80+
*.so
81+
*.dylib
82+
83+
# Test binary, build with 'go test -c'
84+
*.test
85+
86+
# Output of the go coverage tool, specifically when used with LiteIDE
87+
*.out
88+
89+
### Vim ###
90+
# swap
91+
.sw[a-p]
92+
.*.sw[a-p]
93+
# session
94+
Session.vim
95+
# temporary
96+
.netrwhist
97+
# auto-generated tag files
98+
tags
99+
100+
### VisualStudioCode ###
101+
.vscode/*
102+
!.vscode/settings.json
103+
!.vscode/tasks.json
104+
!.vscode/launch.json
105+
!.vscode/extensions.json
106+
.history
107+
108+
109+
# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode

0 commit comments

Comments
 (0)