Skip to content

Commit 52d41a9

Browse files
committed
update go version and dependencies.
change maintainer to label
1 parent 6974919 commit 52d41a9

3 files changed

Lines changed: 58 additions & 1407 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM golang AS builder
2-
MAINTAINER "Cuong Manh Le <cuong.manhle.vn@gmail.com>"
2+
LABEL maintainer="Cuong Manh Le <cuong.manhle.vn@gmail.com>"
33

44
RUN apt-get update && \
55
dpkg --add-architecture arm64 &&\

go.mod

Lines changed: 51 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,69 @@
11
module github.com/bitnami-labs/kubewatch
22

3-
go 1.14
3+
go 1.24
44

55
require (
66
github.com/fatih/structtag v1.2.0
7-
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect
8-
github.com/hashicorp/hcl v0.0.0-20171017181929-23c074d0eceb // indirect
9-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
10-
github.com/magiconair/properties v1.7.4 // indirect
117
github.com/mkmik/multierror v0.3.0
12-
github.com/pelletier/go-toml v1.0.1 // indirect
138
github.com/prometheus/client_golang v1.20.3
149
github.com/segmentio/textio v1.2.0
1510
github.com/sirupsen/logrus v1.6.0
1611
github.com/slack-go/slack v0.6.5
17-
github.com/spf13/cast v1.1.0 // indirect
1812
github.com/spf13/cobra v0.0.1
19-
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
2013
github.com/spf13/viper v1.0.0
2114
github.com/tbruyelle/hipchat-go v0.0.0-20160921153256-749fb9e14beb
22-
golang.org/x/crypto v0.35.0 // indirect
2315
gopkg.in/yaml.v3 v3.0.1
2416
k8s.io/api v0.20.15
2517
k8s.io/apimachinery v0.20.15
2618
k8s.io/client-go v0.20.15
2719
)
20+
21+
require (
22+
github.com/beorn7/perks v1.0.1 // indirect
23+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
24+
github.com/davecgh/go-spew v1.1.1 // indirect
25+
github.com/fsnotify/fsnotify v1.4.9 // indirect
26+
github.com/go-logr/logr v0.2.0 // indirect
27+
github.com/gogo/protobuf v1.3.2 // indirect
28+
github.com/golang/protobuf v1.5.0 // indirect
29+
github.com/google/go-cmp v0.6.0 // indirect
30+
github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135 // indirect
31+
github.com/google/gofuzz v1.1.0 // indirect
32+
github.com/googleapis/gnostic v0.4.1 // indirect
33+
github.com/gorilla/websocket v1.4.2 // indirect
34+
github.com/hashicorp/golang-lru v0.5.1 // indirect
35+
github.com/hashicorp/hcl v0.0.0-20171017181929-23c074d0eceb // indirect
36+
github.com/imdario/mergo v0.3.5 // indirect
37+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
38+
github.com/json-iterator/go v1.1.12 // indirect
39+
github.com/klauspost/compress v1.17.9 // indirect
40+
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
41+
github.com/magiconair/properties v1.7.4 // indirect
42+
github.com/mitchellh/mapstructure v1.1.2 // indirect
43+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
44+
github.com/modern-go/reflect2 v1.0.2 // indirect
45+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
46+
github.com/pelletier/go-toml v1.0.1 // indirect
47+
github.com/pkg/errors v0.9.1 // indirect
48+
github.com/prometheus/client_model v0.6.1 // indirect
49+
github.com/prometheus/common v0.55.0 // indirect
50+
github.com/prometheus/procfs v0.15.1 // indirect
51+
github.com/spf13/afero v1.2.2 // indirect
52+
github.com/spf13/cast v1.1.0 // indirect
53+
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
54+
github.com/spf13/pflag v1.0.5 // indirect
55+
golang.org/x/crypto v0.35.0 // indirect
56+
golang.org/x/net v0.26.0 // indirect
57+
golang.org/x/oauth2 v0.21.0 // indirect
58+
golang.org/x/sys v0.30.0 // indirect
59+
golang.org/x/term v0.29.0 // indirect
60+
golang.org/x/text v0.22.0 // indirect
61+
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
62+
google.golang.org/protobuf v1.34.2 // indirect
63+
gopkg.in/inf.v0 v0.9.1 // indirect
64+
gopkg.in/yaml.v2 v2.4.0 // indirect
65+
k8s.io/klog/v2 v2.4.0 // indirect
66+
k8s.io/utils v0.0.0-20201110183641-67b214c5f920 // indirect
67+
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
68+
sigs.k8s.io/yaml v1.2.0 // indirect
69+
)

0 commit comments

Comments
 (0)