Skip to content

Commit bf77cb1

Browse files
baluchickentarokkk
authored andcommitted
Bump version to operator-sdk 0.5.0 (#56)
* Use operator sdk version 0.5.0 and introduce new crds
1 parent 21426df commit bf77cb1

File tree

99 files changed

+3963
-2368
lines changed

Some content is hidden

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

99 files changed

+3963
-2368
lines changed

.circleci/config.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: 2
55
jobs:
66
build:
77
docker:
8-
- image: circleci/golang:1.10
8+
- image: circleci/golang:1.11
99

1010
working_directory: /go/src/github.com/banzaicloud/logging-operator
1111
steps:
@@ -25,10 +25,6 @@ jobs:
2525
name: Build
2626
command:
2727
make build
28-
- run:
29-
name: Run go vet
30-
command:
31-
make vet
3228
- run:
3329
name: Run fmt
3430
command:

.gitignore

Lines changed: 9 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
21
# Temporary Build Files
3-
tmp/_output
4-
tmp/_test
5-
6-
2+
build/_output
3+
build/_test
74
# Created by https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
8-
95
### Emacs ###
106
# -*- mode: gitignore; -*-
117
*~
@@ -16,76 +12,55 @@ tmp/_test
1612
auto-save-list
1713
tramp
1814
.\#*
19-
2015
# Org-mode
2116
.org-id-locations
2217
*_archive
23-
2418
# flymake-mode
2519
*_flymake.*
26-
2720
# eshell files
2821
/eshell/history
2922
/eshell/lastdir
30-
3123
# elpa packages
3224
/elpa/
33-
3425
# reftex files
3526
*.rel
36-
3727
# AUCTeX auto folder
3828
/auto/
39-
4029
# cask packages
4130
.cask/
4231
dist/
43-
4432
# Flycheck
4533
flycheck_*.el
46-
4734
# server auth directory
4835
/server/
49-
5036
# projectiles files
5137
.projectile
5238
projectile-bookmarks.eld
53-
5439
# directory configuration
5540
.dir-locals.el
56-
5741
# saveplace
5842
places
59-
6043
# url cache
6144
url/cache/
62-
6345
# cedet
6446
ede-projects.el
65-
6647
# smex
6748
smex-items
68-
6949
# company-statistics
7050
company-statistics-cache.el
71-
7251
# anaconda-mode
7352
anaconda-mode/
74-
7553
### Go ###
7654
# Binaries for programs and plugins
7755
*.exe
7856
*.exe~
7957
*.dll
8058
*.so
8159
*.dylib
82-
8360
# Test binary, build with 'go test -c'
8461
*.test
85-
8662
# Output of the go coverage tool, specifically when used with LiteIDE
8763
*.out
88-
8964
### Vim ###
9065
# swap
9166
.sw[a-p]
@@ -96,17 +71,17 @@ Session.vim
9671
.netrwhist
9772
# auto-generated tag files
9873
tags
99-
10074
### VisualStudioCode ###
10175
.vscode/*
102-
!.vscode/settings.json
103-
!.vscode/tasks.json
104-
!.vscode/launch.json
105-
!.vscode/extensions.json
10676
.history
77+
# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
10778

10879
### Idea ###
10980
.idea/*
81+
!/.idea/copyright/
82+
!/.idea/runConfigurations/
83+
!/.idea/modules.xml
84+
!/.idea/*.iml
11085

111-
112-
# End of https://www.gitignore.io/api/go,vim,emacs,visualstudiocode
86+
/vendor
87+
/bin

.idea/copyright/Banzai_Cloud.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/logging-operator.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.10-alpine as golang
1+
FROM golang:1.11-alpine as golang
22

33
ADD . /go/src/github.com/banzaicloud/logging-operator
44
WORKDIR /go/src/github.com/banzaicloud/logging-operator
@@ -19,4 +19,4 @@ COPY --from=golang /go/bin/logging-operator /usr/local/bin/logging-operator
1919
RUN adduser -D logging-operator
2020
USER logging-operator
2121

22-
ENTRYPOINT ["/usr/local/bin/logging-operator"]
22+
ENTRYPOINT ["/usr/local/bin/logging-operator"]

0 commit comments

Comments
 (0)