Skip to content

Commit f6d3a1b

Browse files
Remove glog (#3)
1 parent 88a8bdb commit f6d3a1b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,12 @@ helm install chart/
3737
```
3838

3939
Or user the docker image: `tools4k8s/k8s-event-logger`
40+
41+
42+
### Testing
43+
44+
Run it:
45+
46+
```
47+
go run main.go
48+
```

chart/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image:
22
repository: tools4k8s/k8s-event-logger
3-
tag: "1.3"
3+
tag: "1.4"
44
pullPolicy: IfNotPresent
55

66
resources:

main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package main
22

33
import (
44
"fmt"
5-
"log"
65
"os"
76
"time"
87
"os/user"
@@ -18,7 +17,7 @@ import (
1817
func main() {
1918
usr, err := user.Current()
2019
if err != nil {
21-
log.Fatal( err )
20+
panic( err )
2221
}
2322

2423
var config *rest.Config

0 commit comments

Comments
 (0)