-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #234 from weka/dev
fix(deps): release 2.3.4 content
- Loading branch information
Showing
13 changed files
with
108 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,12 @@ maintainers: | |
email: [email protected] | ||
url: https://weka.io | ||
sources: | ||
- https://github.com/weka/csi-wekafs/tree/v2.3.2 | ||
- https://github.com/weka/csi-wekafs/tree/v$CHART_VERSION/charts/csi-wekafsplugin | ||
home: https://github.com/weka/csi-wekafs | ||
icon: https://weka.github.io/csi-wekafs/logo.png | ||
type: application | ||
version: 2.3.2 | ||
appVersion: v2.3.2 | ||
kubeVersion: ">=1.18.0" | ||
version: 2.3.3-SNAPSHOT.10.6e208c5 | ||
appVersion: v2.3.3-SNAPSHOT.10.6e208c5 | ||
keywords: [storage, filesystem, HPC] | ||
annotations: | ||
artifacthub.io/category: "storage" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,49 @@ | ||
module github.com/wekafs/csi-wekafs | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.21.6 | ||
|
||
require ( | ||
github.com/container-storage-interface/spec v1.9.0 | ||
github.com/google/go-querystring v1.1.0 | ||
github.com/google/uuid v1.4.0 | ||
github.com/google/uuid v1.5.0 | ||
github.com/hashicorp/go-version v1.6.0 | ||
github.com/kubernetes-csi/csi-lib-utils v0.16.0 | ||
github.com/kubernetes-csi/csi-lib-utils v0.17.0 | ||
github.com/pkg/xattr v0.4.9 | ||
github.com/prometheus/client_golang v1.17.0 | ||
github.com/prometheus/client_golang v1.18.0 | ||
github.com/rs/zerolog v1.31.0 | ||
github.com/showa-93/go-mask v0.6.1 | ||
go.opentelemetry.io/otel v1.21.0 | ||
go.opentelemetry.io/otel v1.22.0 | ||
go.opentelemetry.io/otel/exporters/jaeger v1.17.0 | ||
go.opentelemetry.io/otel/sdk v1.21.0 | ||
go.opentelemetry.io/otel/trace v1.21.0 | ||
golang.org/x/exp v0.0.0-20231127185646-65229373498e | ||
golang.org/x/sync v0.5.0 | ||
google.golang.org/grpc v1.59.0 | ||
google.golang.org/protobuf v1.31.0 | ||
k8s.io/apimachinery v0.28.4 | ||
go.opentelemetry.io/otel/sdk v1.22.0 | ||
go.opentelemetry.io/otel/trace v1.22.0 | ||
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a | ||
golang.org/x/sync v0.6.0 | ||
google.golang.org/grpc v1.60.1 | ||
google.golang.org/protobuf v1.32.0 | ||
k8s.io/apimachinery v0.29.1 | ||
k8s.io/helm v2.17.0+incompatible | ||
k8s.io/mount-utils v0.28.4 | ||
k8s.io/mount-utils v0.29.1 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/go-logr/logr v1.3.0 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect | ||
github.com/moby/sys/mountinfo v0.7.1 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.45.0 // indirect | ||
github.com/prometheus/common v0.46.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.21.0 // indirect | ||
golang.org/x/net v0.19.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.22.0 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect | ||
k8s.io/klog/v2 v2.110.1 // indirect | ||
k8s.io/utils v0.0.0-20231127182322-b307cd553661 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect | ||
k8s.io/klog/v2 v2.120.1 // indirect | ||
k8s.io/utils v0.0.0-20240102154912-e7106e64919e // indirect | ||
) |
Oops, something went wrong.