Skip to content

Commit

Permalink
Update all dependencies (#194)
Browse files Browse the repository at this point in the history
* Update all Go dependencies

* Update franz-go hook names

* Use Go 1.20 and Alpine 3.17 for Docker images

* Update docker repo and image in README
  • Loading branch information
weeco authored Mar 29, 2023
1 parent 89c2276 commit d24d713
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 310 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################################
# Build image
############################################################
FROM golang:1.19-alpine as builder
FROM golang:1.20-alpine as builder

ARG VERSION
ARG BUILT_AT
Expand All @@ -27,7 +27,7 @@ RUN CGO_ENABLED=0 go build \
############################################################
# Runtime Image
############################################################
FROM alpine:3.16.3
FROM alpine:3.17
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /app/bin/kminion /app/kminion

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ You can find a list of all exported metrics here: [/docs/metrics.md](/docs/metri
### 🐳 Docker image

All images will be built on each push to master or for every new release. You can find an overview of all available tags
in our [DockerHub repository](https://hub.docker.com/r/vectorized/kminion/tags).
in our [DockerHub repository](https://hub.docker.com/r/redpandadata/kminion/tags).

```shell
docker pull docker pull vectorized/kminion:v2.2.1
docker pull docker pull redpandadata/kminion:v2.2.3
```

### ☸ Helm chart
Expand Down
34 changes: 17 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,35 @@ go 1.19

require (
github.com/google/uuid v1.3.0
github.com/jcmturner/gokrb5/v8 v8.4.3
github.com/jcmturner/gokrb5/v8 v8.4.4
github.com/jellydator/ttlcache/v2 v2.11.1
github.com/knadh/koanf v1.4.4
github.com/knadh/koanf v1.5.0
github.com/mitchellh/mapstructure v1.5.0
github.com/orcaman/concurrent-map v1.0.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.14.0
github.com/stretchr/testify v1.8.0
github.com/twmb/franz-go v1.10.4
github.com/twmb/franz-go/pkg/kmsg v1.2.0
github.com/stretchr/testify v1.8.1
github.com/twmb/franz-go v1.13.1
github.com/twmb/franz-go/pkg/kmsg v1.5.0
github.com/twmb/franz-go/pkg/sasl/kerberos v1.1.0
go.uber.org/atomic v1.10.0
go.uber.org/zap v1.23.0
go.uber.org/zap v1.24.0
golang.org/x/sync v0.1.0
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.7.6 // indirect
github.com/jcmturner/rpc/v2 v2.0.3 // indirect
github.com/klauspost/compress v1.15.12 // indirect
github.com/klauspost/compress v1.16.3 // indirect
github.com/kr/pretty v0.2.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
Expand All @@ -40,13 +41,12 @@ require (
github.com/pierrec/lz4/v4 v4.1.17 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/crypto v0.3.0 // indirect
golang.org/x/net v0.2.0 // indirect
golang.org/x/sys v0.2.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
github.com/prometheus/common v0.42.0 // indirect
github.com/prometheus/procfs v0.9.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/net v0.8.0 // indirect
golang.org/x/sys v0.6.0 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit d24d713

Please sign in to comment.