-
Notifications
You must be signed in to change notification settings - Fork 8
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
Feat syft sboms #68
Feat syft sboms #68
Conversation
PR Analysis
PR Feedback
How to use
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make changes.
@@ -148,6 +148,13 @@ func (s *GeneratedNetworkPolicyStorage) Count(key string) (int64, error) { | |||
return 0, storage.NewInvalidObjError(key, operationNotSupportedMsg) | |||
} | |||
|
|||
// RequestWatchProgress fulfills the interface.Storage |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// RequestWatchProgress fulfills the interface.Storage | |
// RequestWatchProgress fulfills the storage.Interface |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
0051eaf
to
cf3512d
Compare
Summary:
|
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
Signed-off-by: Vlad Klokun <[email protected]>
338f9f4
to
4d83b5d
Compare
Signed-off-by: Vlad Klokun <[email protected]>
Summary:
|
PR Type:
Enhancement
PR Description:
This PR introduces changes to migrate from SPDX to Syft Software Bill of Materials (SBOMs). The main changes include:
PR Main Files Walkthrough:
files:
pkg/apis/softwarecomposition/v1beta1/zz_generated.deepcopy.go
: Updated the autogenerated deepcopy functions to include the new Syft types.pkg/registry/softwarecomposition/sbomsyfts/strategy.go
: Introduced a new strategy for SBOMSyft, including functions for object validation, preparation for create/update, and other necessary operations.pkg/apis/softwarecomposition/v1beta1/syfttypes.go
: Added new Syft types to the software composition API.pkg/generated/clientset/versioned/typed/softwarecomposition/v1beta1/sbomsyft.go
: Generated clientset for the new SBOMSyft type.pkg/generated/listers/softwarecomposition/v1beta1/sbomsyft.go
: Generated listers for the new SBOMSyft type.pkg/generated/informers/externalversions/softwarecomposition/v1beta1/sbomsyft.go
: Generated informers for the new SBOMSyft type.pkg/apis/softwarecomposition/packagemetadata/packagemetadata.go
: Updated the package metadata to accommodate the new Syft types.pkg/registry/softwarecomposition/sbomsyfts/etcd.go
: Added new functions to handle SBOMSyft objects in etcd storage.pkg/apiserver/apiserver.go
: Updated the API server to handle requests related to the new SBOMSyft type.pkg/cmd/server/start.go
: Updated the server start command to include the new SBOMSyft type.User Description:
What this PR changes?
This PR adds Custom Resources needed to migrate from SPDX to Syft SBOMs.