Skip to content

Commit

Permalink
Remove glog (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-rocket-internet authored Jul 18, 2019
1 parent 88a8bdb commit f6d3a1b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,12 @@ helm install chart/
```

Or user the docker image: `tools4k8s/k8s-event-logger`


### Testing

Run it:

```
go run main.go
```
2 changes: 1 addition & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
repository: tools4k8s/k8s-event-logger
tag: "1.3"
tag: "1.4"
pullPolicy: IfNotPresent

resources:
Expand Down
3 changes: 1 addition & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package main

import (
"fmt"
"log"
"os"
"time"
"os/user"
Expand All @@ -18,7 +17,7 @@ import (
func main() {
usr, err := user.Current()
if err != nil {
log.Fatal( err )
panic( err )
}

var config *rest.Config
Expand Down

0 comments on commit f6d3a1b

Please sign in to comment.