File tree Expand file tree Collapse file tree 10 files changed +79
-548
lines changed
Expand file tree Collapse file tree 10 files changed +79
-548
lines changed Original file line number Diff line number Diff line change 11apiVersion : v1
22name : keepup
3- version : 1.0.3
4- appVersion : 1.0.1
3+ version : 1.1.0
4+ appVersion : 1.1.0
Original file line number Diff line number Diff line change 77
88redis :
99 enabled : true
10- image : " redis:6 .2.7 "
10+ image : " redis:8 .2.3 "
1111 pullPolicy : " IfNotPresent"
1212
1313ingress :
Original file line number Diff line number Diff line change 1- FROM golang:1.16.0-buster AS builder
1+ FROM golang:1.25.5-trixie AS builder
22ARG BUILD_VERSION='v1.2.3'
33ENV LISTEN_PORT=9101
44WORKDIR /opt/keepup/
@@ -8,7 +8,7 @@ COPY src ./src
88RUN go mod download
99RUN CGO_ENABLED=0 GOOS=linux go build -ldflags "-X main.buildVersion=${BUILD_VERSION}" -a -installsuffix cgo -o keepup src/main.go
1010
11- FROM debian:buster
11+ FROM debian:trixie
1212WORKDIR /opt/keepup/
1313RUN apt-get update \
1414 && apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 11module keepup
22
3- go 1.16
3+ go 1.25
44
55require (
6- github.com/prometheus/client_golang v1.13.0
7- github.com/joho/godotenv v1.4.0
8- github.com/google/uuid v1.0.0
9- github.com/go-redis/redis/v9 v9.0.0-beta.2
6+ github.com/google/uuid v1.6.0
7+ github.com/joho/godotenv v1.5.1
8+ github.com/prometheus/client_golang v1.23.2
9+ github.com/redis/go-redis/v9 v9.17.2
10+ github.com/golang/protobuf v1.5.4
11+ )
12+
13+ require (
14+ github.com/beorn7/perks v1.0.1 // indirect
15+ github.com/cespare/xxhash/v2 v2.3.0 // indirect
16+ github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
17+ github.com/kr/text v0.2.0 // indirect
18+ github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
19+ github.com/prometheus/client_model v0.6.2 // indirect
20+ github.com/prometheus/common v0.67.5 // indirect
21+ github.com/prometheus/procfs v0.19.2 // indirect
22+ go.yaml.in/yaml/v2 v2.4.3 // indirect
23+ golang.org/x/sys v0.40.0 // indirect
24+ google.golang.org/protobuf v1.36.11 // indirect
1025)
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 88 "log"
99 "time"
1010
11- "github.com/go-redis/redis/v9"
1211 "github.com/google/uuid"
12+ "github.com/redis/go-redis/v9"
1313)
1414
1515type KubernetesCluster struct {
Original file line number Diff line number Diff line change 99 "strings"
1010 "sync"
1111
12- "github.com/go-redis/redis/v9"
1312 "github.com/google/uuid"
13+ "github.com/redis/go-redis/v9"
1414)
1515
1616type PackageVersionsHandler struct {
Original file line number Diff line number Diff line change 88 "log"
99 "time"
1010
11- "github.com/go-redis/redis/v9"
1211 "github.com/google/uuid"
12+ "github.com/redis/go-redis/v9"
1313)
1414
1515type OsRelease struct {
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import (
1111 "strings"
1212 "time"
1313
14- "github.com/go-redis/redis/v9"
1514 "github.com/google/uuid"
15+ "github.com/redis/go-redis/v9"
1616)
1717
1818const UUIDSuffix = "PACKAGE_UUID"
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import (
1818 "github.com/prometheus/client_golang/prometheus"
1919 "github.com/prometheus/client_golang/prometheus/promhttp"
2020
21- "github.com/go- redis/redis/v9"
21+ "github.com/redis/go- redis/v9"
2222)
2323
2424var (
You can’t perform that action at this time.
0 commit comments