Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #1

Merged
merged 27 commits into from
Dec 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5f61821
Add controller, filterengine and notifier for kubeops
PrasadG193 Dec 24, 2018
e98bde4
Add ingress validator filter
PrasadG193 Dec 26, 2018
7b930f4
Send slack notification for event
PrasadG193 Dec 26, 2018
05fe517
Add vendoring
PrasadG193 Dec 26, 2018
8122af0
Add Dockerfile and build script
PrasadG193 Dec 26, 2018
c4ad77d
Add helm chart to deploy kubeops
PrasadG193 Dec 26, 2018
ec1c5f7
Fix event maps and build script
PrasadG193 Dec 26, 2018
51a2ead
Support 2-way communication with slack bot to exec kubectl commands
PrasadG193 Dec 27, 2018
335e405
Add commands to manage notifier
PrasadG193 Dec 27, 2018
1907dd7
Update README.md
PrasadG193 Dec 28, 2018
670cf48
Update README.md
PrasadG193 Dec 28, 2018
e2b23bc
Update README.md
PrasadG193 Dec 28, 2018
62e0538
Add ping command, support for nodes, pvcs resources
PrasadG193 Dec 28, 2018
465845c
Update README.md
PrasadG193 Dec 28, 2018
0d41715
Add verify-gofmt, update-gofmt, verify-golint and verify-govet scripts
PrasadG193 Dec 31, 2018
3b3d768
Merge branch 'develop' of https://github.com/infracloudio/kubeops int…
PrasadG193 Dec 31, 2018
c3bfc46
Run golint on source code
PrasadG193 Dec 31, 2018
8052353
Add .travis.yml for CI build
PrasadG193 Dec 31, 2018
3fac627
Add build status in README
PrasadG193 Dec 31, 2018
0271a60
Fix typo and remove redundant comments
PrasadG193 Dec 31, 2018
81aae70
Move command execution logic to seperate package
PrasadG193 Dec 31, 2018
e597b7a
Add logic to skip older events
PrasadG193 Dec 31, 2018
1114f40
Fix kubectl binary path
PrasadG193 Dec 31, 2018
9126c83
Add timestamp to slack notifications
PrasadG193 Dec 31, 2018
173d0fb
Use image tag 0.5
PrasadG193 Dec 31, 2018
2523515
Move some logs to debug level
PrasadG193 Dec 31, 2018
334bdda
Add create events in default configuration
PrasadG193 Dec 31, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
language: go

go:
- 1.11

services:
- docker

install:
- go get -u github.com/golang/dep/cmd/dep
- go get -u golang.org/x/lint/golint

before_script:
- hack/verify-gofmt.sh
- hack/verify-govet.sh
- hack/verify-golint.sh
- dep ensure

script:
- build/docker.sh infracloudio/kubeops latest
Loading