Skip to content

Commit

Permalink
Merge pull request stefanprodan#232 from stefanprodan/deps-update
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
stefanprodan authored Nov 9, 2022
2 parents 1cf228c + 7186908 commit dcb5b13
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 58 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ build:
GIT_COMMIT=$$(git rev-list -1 HEAD) && CGO_ENABLED=0 go build -ldflags "-s -w -X github.com/stefanprodan/podinfo/pkg/version.REVISION=$(GIT_COMMIT)" -a -o ./bin/podcli ./cmd/podcli/*

tidy:
rm -f go.sum; go mod tidy -compat=1.18
rm -f go.sum; go mod tidy -compat=1.19

vet:
go vet ./...

fmt:
gofmt -l -s -w ./
Expand Down
2 changes: 1 addition & 1 deletion cue/podinfo/servicemonitor.cue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package podinfo
port: "http-metrics"
interval: _config.serviceMonitor.interval
}]
namespaceSelector: matchNames: _config.meta.namespace
namespaceSelector: matchNames: [_config.meta.namespace]
selector: matchLabels: _config.meta.labels
}
}
36 changes: 18 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/stefanprodan/podinfo

go 1.18
go 1.19

require (
github.com/chzyer/readline v1.5.1
Expand All @@ -10,26 +10,26 @@ require (
github.com/gomodule/redigo v1.8.9
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/prometheus/client_golang v1.13.0
github.com/spf13/cobra v1.6.0
github.com/prometheus/client_golang v1.14.0
github.com/spf13/cobra v1.6.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.13.0
github.com/spf13/viper v1.14.0
github.com/swaggo/http-swagger v1.3.3
github.com/swaggo/swag v1.8.7
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.36.3
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.36.3
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.36.3
go.opentelemetry.io/contrib/propagators/aws v1.11.0
go.opentelemetry.io/contrib/propagators/b3 v1.11.0
go.opentelemetry.io/contrib/propagators/jaeger v1.11.0
go.opentelemetry.io/contrib/propagators/ot v1.11.0
go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux v0.36.4
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.36.4
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.36.4
go.opentelemetry.io/contrib/propagators/aws v1.11.1
go.opentelemetry.io/contrib/propagators/b3 v1.11.1
go.opentelemetry.io/contrib/propagators/jaeger v1.11.1
go.opentelemetry.io/contrib/propagators/ot v1.11.1
go.opentelemetry.io/otel v1.11.1
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.11.1
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.11.1
go.opentelemetry.io/otel/sdk v1.11.1
go.opentelemetry.io/otel/trace v1.11.1
go.uber.org/zap v1.23.0
golang.org/x/net v0.1.0
golang.org/x/net v0.2.0
google.golang.org/grpc v1.50.1
)

Expand Down Expand Up @@ -64,23 +64,23 @@ require (
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/prometheus/client_model v0.2.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
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/afero v1.9.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
github.com/swaggo/files v0.0.0-20220610200504-28940afbdbfe // indirect
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.1 // indirect
go.opentelemetry.io/otel/metric v0.32.3 // indirect
go.opentelemetry.io/otel/metric v0.33.0 // indirect
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/sys v0.2.0 // indirect
golang.org/x/text v0.4.0 // indirect
golang.org/x/tools v0.1.12 // indirect
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect
google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
Expand Down
Loading

0 comments on commit dcb5b13

Please sign in to comment.