Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PB-7215 : Update Kopia binary with 0.16.0 tag and SSE changes #379

Merged
merged 1 commit into from
Jun 13, 2024

Conversation

vikasit12
Copy link
Collaborator

What this PR does / why we need it:
This PR enables kopia maintenance pod to handle object locked azure container session marker handling

Which issue(s) this PR fixes (optional)
Closes #PB-7125

Special notes for your reviewer:
The changes done in the Kopia source code: ( v0.16.0).

root@ip-10-13-180-40:~/go/src/github.com/kopia# git diff
diff --git a/cli/storage_s3.go b/cli/storage_s3.go
index 77f1b9ce..7dcd4f49 100644
--- a/cli/storage_s3.go
+++ b/cli/storage_s3.go
@@ -29,6 +29,7 @@ func (c *storageS3Flags) Setup(svc StorageProviderServices, cmd *kingpin.CmdClau
        cmd.Flag("prefix", "Prefix to use for objects in the bucket. Put trailing slash (/) if you want to use prefix as directory. e.g my-backup-dir/ would put repository contents inside my-backup-dir directory").StringVar(&c.s3options.Prefix)
        cmd.Flag("disable-tls", "Disable TLS security (HTTPS)").BoolVar(&c.s3options.DoNotUseTLS)
        cmd.Flag("disable-tls-verification", "Disable TLS (HTTPS) certificate verification").BoolVar(&c.s3options.DoNotVerifyTLS)
+       cmd.Flag("sseType", "SSE types, only SSE-S3 is supported.").Default("").StringVar(&c.s3options.SseType)
 
        commonThrottlingFlags(cmd, &c.s3options.Limits)
 
diff --git a/repo/blob/s3/s3_options.go b/repo/blob/s3/s3_options.go
index 626afb51..b498d1f9 100644
--- a/repo/blob/s3/s3_options.go
+++ b/repo/blob/s3/s3_options.go
@@ -22,6 +22,7 @@ type Options struct {
        AccessKeyID     string `json:"accessKeyID"`
        SecretAccessKey string `json:"secretAccessKey" kopia:"sensitive"`
        SessionToken    string `json:"sessionToken"    kopia:"sensitive"`
+       SseType                 string `json:"sseType"    kopia:"sensitive"`
 
        // Region is an optional region to pass in authorization header.
        Region string `json:"region,omitempty"`
diff --git a/repo/blob/s3/s3_storage.go b/repo/blob/s3/s3_storage.go
index 3fb05117..8e2f31fe 100644
--- a/repo/blob/s3/s3_storage.go
+++ b/repo/blob/s3/s3_storage.go
@@ -15,6 +15,7 @@
:...skipping...
diff --git a/cli/storage_s3.go b/cli/storage_s3.go
index 77f1b9ce..7dcd4f49 100644
--- a/cli/storage_s3.go
+++ b/cli/storage_s3.go
@@ -29,6 +29,7 @@ func (c *storageS3Flags) Setup(svc StorageProviderServices, cmd *kingpin.CmdClau
        cmd.Flag("prefix", "Prefix to use for objects in the bucket. Put trailing slash (/) if you want to use prefix as directory. e.g my-backup-dir/ would put repository contents inside my-backup-dir directory").StringVar(&c.s3options.Prefix)
        cmd.Flag("disable-tls", "Disable TLS security (HTTPS)").BoolVar(&c.s3options.DoNotUseTLS)
        cmd.Flag("disable-tls-verification", "Disable TLS (HTTPS) certificate verification").BoolVar(&c.s3options.DoNotVerifyTLS)
+       cmd.Flag("sseType", "SSE types, only SSE-S3 is supported.").Default("").StringVar(&c.s3options.SseType)
 
        commonThrottlingFlags(cmd, &c.s3options.Limits)
 
diff --git a/repo/blob/s3/s3_options.go b/repo/blob/s3/s3_options.go
index 626afb51..b498d1f9 100644
--- a/repo/blob/s3/s3_options.go
+++ b/repo/blob/s3/s3_options.go
@@ -22,6 +22,7 @@ type Options struct {
        AccessKeyID     string `json:"accessKeyID"`
        SecretAccessKey string `json:"secretAccessKey" kopia:"sensitive"`
        SessionToken    string `json:"sessionToken"    kopia:"sensitive"`
+       SseType                 string `json:"sseType"    kopia:"sensitive"`
 
        // Region is an optional region to pass in authorization header.
        Region string `json:"region,omitempty"`
diff --git a/repo/blob/s3/s3_storage.go b/repo/blob/s3/s3_storage.go
index 3fb05117..8e2f31fe 100644
--- a/repo/blob/s3/s3_storage.go
+++ b/repo/blob/s3/s3_storage.go
@@ -15,6 +15,7 @@
        "github.com/minio/minio-go/v7"
        "github.com/minio/minio-go/v7/pkg/credentials"
        "github.com/pkg/errors"
+       "github.com/minio/minio-go/v7/pkg/encrypt"
 
        "github.com/kopia/kopia/internal/clock"
        "github.com/kopia/kopia/internal/gather"
@@ -169,6 +170,11 @@ func (s *s3Storage) putBlob(ctx context.Context, b blob.ID, data blob.Bytes, opt
                retainUntilDate = clock.Now().Add(opts.RetentionPeriod).UTC()
        }
 
+       var sse encrypt.ServerSide
+    if s.SseType == "SSE-S3" {
+        sse = encrypt.NewSSE()
+    }
+
        uploadInfo, err := s.cli.PutObject(ctx, s.BucketName, s.getObjectNameString(b), data.Reader(), int64(data.Length()), minio.PutObjectOptions{
                ContentType: "application/x-kopia",
                // Kopia already splits snapshot contents into small blobs to improve
@@ -183,6 +189,7 @@ func (s *s3Storage) putBlob(ctx context.Context, b blob.ID, data blob.Bytes, opt
                StorageClass:    storageClass,
                RetainUntilDate: retainUntilDate,
                Mode:            retentionMode,
+               ServerSideEncryption: sse,
        })
 
        if isInvalidCredentials(err) {

Copy link

github-actions bot commented Jun 6, 2024

OSS Scan Results:

Title Severity Package Name CVEs Fix version Introduced
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/csi@#0422b6eeaf3f', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/resourcecollector@#0422b6eeaf3f', 'k8s.io/kubernetes/pkg/registry/core/service/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/cli-runtime/pkg/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/discovery/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/apis/volumesnapshot/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/apis/volumesnapshot/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/api/rbac/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/kubernetes-incubator/external-storage/snapshot/pkg/apis/crd/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apimachinery/pkg/api/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/api/apps/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/kubernetes/pkg/apis/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apimachinery/pkg/api/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'github.com/libopenstorage/openstorage-sdk-clients/sdk/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/kubernetes-incubator/external-storage/snapshot/pkg/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/client-go/listers/storage/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/stork@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/batch@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/kdmp@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/externalstorage@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/apiextensions@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/apps@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/rbac@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/core@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/transport/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/objectstore@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore/azure@#0422b6eeaf3f', 'github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/[email protected]', 'github.com/Azure/azure-sdk-for-go/sdk/azcore/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/apis/stork/v1alpha1@#0422b6eeaf3f', 'github.com/kubernetes-incubator/external-storage/snapshot/pkg/apis/crd/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/apiextensions@#5bba89276178', 'k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/log@#0422b6eeaf3f', 'k8s.io/apimachinery/pkg/api/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/api/batch/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'github.com/libopenstorage/openstorage-sdk-clients/sdk/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/aws@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/client-go/listers/storage/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/azure@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/client-go/listers/storage/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/snapshotter@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/client-go/listers/storage/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/client-go/listers/storage/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/gcp@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/client-go/listers/storage/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/batch@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/kdmp@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/apps@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/resourcecollector@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/rbac@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/kubectl/pkg/util/[email protected]', 'k8s.io/kubectl/pkg/util/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/transport/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/gcp@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'github.com/libopenstorage/openstorage-sdk-clients/sdk/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore/azure@#0422b6eeaf3f', 'github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/[email protected]', 'github.com/Azure/azure-sdk-for-go/sdk/azcore/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/snapshotter@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore/azure@#0422b6eeaf3f', 'github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/[email protected]', 'github.com/Azure/azure-sdk-for-go/sdk/azcore/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/objectstore@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/apis/stork/v1alpha1@#0422b6eeaf3f', 'github.com/kubernetes-incubator/external-storage/snapshot/pkg/apis/crd/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/api/batch/[email protected]', 'k8s.io/api/batch/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apimachinery/pkg/runtime/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'github.com/kubernetes-incubator/external-storage/snapshot/pkg/[email protected]', 'github.com/kubernetes-incubator/external-storage/snapshot/pkg/apis/crd/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/apps@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/utils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/apps@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/storage@#5bba89276178', 'k8s.io/client-go/kubernetes/typed/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/meta/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/kubectl/pkg/cmd/[email protected]', 'k8s.io/kubectl/pkg/[email protected]', 'k8s.io/kubectl/pkg/util/openapi/[email protected]', 'k8s.io/kubectl/pkg/util/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/aws@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/azure@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/resourcecollector@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/csi@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/snapshotter@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore/azure@#0422b6eeaf3f', 'github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/[email protected]', 'github.com/Azure/azure-sdk-for-go/sdk/azcore/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/objectstore/azure@#0422b6eeaf3f', 'github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/[email protected]', 'github.com/Azure/azure-sdk-for-go/sdk/azcore/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/versioned/typed/volumesnapshot/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/versioned/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/apis/volumesnapshot/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/rbac@#5bba89276178', 'k8s.io/client-go/kubernetes/typed/rbac/[email protected]', 'k8s.io/client-go/applyconfigurations/rbac/[email protected]', 'k8s.io/api/rbac/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/plugin/pkg/client/auth/[email protected]', 'k8s.io/client-go/pkg/apis/clientauthentication/[email protected]', 'k8s.io/client-go/pkg/apis/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/apps@#5bba89276178', 'k8s.io/client-go/kubernetes/typed/apps/[email protected]', 'k8s.io/client-go/applyconfigurations/apps/[email protected]', 'k8s.io/api/apps/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/component-helpers/scheduling/[email protected]', 'k8s.io/component-helpers/scheduling/corev1/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/apis/stork/v1alpha1@#0422b6eeaf3f', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/typed/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/meta/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/snapshot/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/versioned/typed/volumesnapshot/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/clientset/versioned/[email protected]', 'github.com/kubernetes-csi/external-snapshotter/client/v4/apis/volumesnapshot/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/stork@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/batch@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/kdmp@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/externalstorage@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/csi@#0422b6eeaf3f', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/plugin/pkg/client/auth/[email protected]', 'k8s.io/client-go/pkg/apis/clientauthentication/[email protected]', 'k8s.io/client-go/pkg/apis/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/plugin/pkg/client/auth/[email protected]', 'k8s.io/client-go/pkg/apis/clientauthentication/[email protected]', 'k8s.io/client-go/pkg/apis/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/kubernetes-incubator/external-storage/snapshot/pkg/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/[email protected]', 'k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/storage@#5bba89276178', 'k8s.io/client-go/kubernetes/typed/storage/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/apps@#5bba89276178', 'k8s.io/client-go/kubernetes/typed/apps/[email protected]', 'k8s.io/client-go/applyconfigurations/apps/[email protected]', 'k8s.io/api/apps/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/aws@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/component-helpers/scheduling/[email protected]', 'k8s.io/component-helpers/scheduling/corev1/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/azure@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/component-helpers/scheduling/[email protected]', 'k8s.io/component-helpers/scheduling/corev1/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/snapshotter@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/component-helpers/scheduling/[email protected]', 'k8s.io/component-helpers/scheduling/corev1/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/component-helpers/scheduling/[email protected]', 'k8s.io/component-helpers/scheduling/corev1/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/gcp@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/gcp@#0422b6eeaf3f', 'k8s.io/component-helpers/storage/[email protected]', 'k8s.io/component-helpers/scheduling/[email protected]', 'k8s.io/component-helpers/scheduling/corev1/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/log@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/apis/stork/v1alpha1@#0422b6eeaf3f', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/typed/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/meta/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/objectstore@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/apis/stork/v1alpha1@#0422b6eeaf3f', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/typed/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/storage/[email protected]', 'k8s.io/client-go/applyconfigurations/meta/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/runtime/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/csi@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/batch@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/kdmp@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/client-go/discovery/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/plugin/pkg/client/auth/[email protected]', 'k8s.io/client-go/pkg/apis/clientauthentication/[email protected]', 'k8s.io/client-go/pkg/apis/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/utils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/portworx/sched-ops/k8s/apps@#5bba89276178', 'k8s.io/client-go/kubernetes/typed/apps/[email protected]', 'k8s.io/client-go/applyconfigurations/apps/[email protected]', 'k8s.io/api/apps/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'github.com/portworx/pxc/pkg/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/tools/clientcmd/api/[email protected]', 'k8s.io/apimachinery/pkg/runtime/serializer/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/v1/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/source/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/aws@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/azure@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/resourcecollector@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/portworx/sched-ops/k8s/core@#5bba89276178', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/transport/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/plugin/pkg/client/auth/[email protected]', 'k8s.io/client-go/pkg/apis/clientauthentication/[email protected]', 'k8s.io/client-go/pkg/apis/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/source/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/controllers@#0422b6eeaf3f', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/source/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/webhook/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/runtime/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/kubectl/pkg/util/[email protected]', 'k8s.io/kubectl/pkg/util/[email protected]', 'k8s.io/client-go/tools/[email protected]', 'k8s.io/client-go/transport/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/plugin/pkg/client/auth/[email protected]', 'k8s.io/client-go/pkg/apis/clientauthentication/[email protected]', 'k8s.io/client-go/pkg/apis/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'k8s.io/kubectl/pkg/cmd/[email protected]', 'k8s.io/kubectl/pkg/[email protected]', 'k8s.io/kubectl/pkg/util/openapi/[email protected]', 'k8s.io/kubectl/pkg/util/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/csi@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'sigs.k8s.io/gcp-compute-persistent-disk-csi-driver/pkg/[email protected]', 'github.com/GoogleCloudPlatform/k8s-cloud-provider/pkg/cloud/meta@#f11817397a1b', 'google.golang.org/api/compute/[email protected]', 'google.golang.org/api/transport/[email protected]', 'google.golang.org/api/[email protected]', 'google.golang.org/[email protected]', 'google.golang.org/grpc/internal/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/runtime/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/source/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/source/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/controllers@#0422b6eeaf3f', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/source/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']
Allocation of Resources Without Limits or Throttling high golang.org/x/net/http2 ['CVE-2023-45288'] ['0.23.0'] ['github.com/portworx/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/webhook/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/runtime/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/internal/[email protected]', 'sigs.k8s.io/controller-runtime/pkg/client/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/[email protected]', 'k8s.io/client-go/kubernetes/[email protected]', 'k8s.io/api/storage/[email protected]', 'k8s.io/api/core/[email protected]', 'k8s.io/apimachinery/pkg/apis/meta/[email protected]', 'k8s.io/apimachinery/pkg/[email protected]', 'k8s.io/apimachinery/pkg/util/[email protected]', 'golang.org/x/net/[email protected]']

Total issues: 137

Copy link

github-actions bot commented Jun 6, 2024

License Evaluation Results:

Title Package Name Package Version Severity License Info Introduced
MPL-2.0 license github.com/hashicorp/errwrap 1.1.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/snapshot/controllers@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-multierror 1.1.1 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/snapshot/controllers@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/resourcecollector@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/csi@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/utils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/aws@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/azure@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/gcp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/portworx@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/snapshot/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/snapshotter@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/utils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']
MPL-2.0 license github.com/hashicorp/go-version 1.6.0 medium MPL-2.0 ['github.com/portworx/[email protected]', 'github.com/libopenstorage/stork/pkg/applicationmanager/controllers@#0422b6eeaf3f', 'github.com/libopenstorage/stork/drivers/volume/kdmp@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/utils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/k8sutils@#0422b6eeaf3f', 'github.com/libopenstorage/stork/pkg/version@#0422b6eeaf3f', 'github.com/hashicorp/[email protected]']

Total License Issues: 17

@vikasit12 vikasit12 merged commit 6852ae2 into 1.2.13 Jun 13, 2024
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant