Documentation ¶
Overview ¶
Package v1 is the v1 version of the API. +groupName=portieris.cloud.ibm.com
Index ¶
- Variables
- func Kind(kind string) schema.GroupKind
- func Resource(resource string) schema.GroupResource
- type ClusterImagePolicy
- type ClusterImagePolicyList
- type ICCRVA
- type IdentityRequirement
- type ImagePolicy
- type ImagePolicyList
- type ImagePolicySpec
- type Policy
- type Repository
- type Simple
- type SimpleRequirement
- type Trust
- type TrustSigner
- type Vulnerability
Constants ¶
This section is empty.
Variables ¶
var ( // SchemeBuilder . SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme . AddToScheme = SchemeBuilder.AddToScheme )
var ( // TruePointer - pointer to a boolwan value of true TruePointer = boolPointer(true) // FalsePointer - pointer to a boolwan value of false FalsePointer = boolPointer(false) )
var SchemeGroupVersion = schema.GroupVersion{Group: policy.GroupName, Version: "v1"}
SchemeGroupVersion is group version used to register these objects
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type ClusterImagePolicy ¶
type ClusterImagePolicy struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ImagePolicySpec `json:"spec"` }
ClusterImagePolicy is a specification for a ClusterImagePolicy resource
func (*ClusterImagePolicy) DeepCopy ¶
func (in *ClusterImagePolicy) DeepCopy() *ClusterImagePolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterImagePolicy.
func (*ClusterImagePolicy) DeepCopyInto ¶
func (in *ClusterImagePolicy) DeepCopyInto(out *ClusterImagePolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterImagePolicy) DeepCopyObject ¶
func (in *ClusterImagePolicy) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ClusterImagePolicyList ¶
type ClusterImagePolicyList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []ClusterImagePolicy `json:"items"` }
ClusterImagePolicyList is a list of ClusterImagePolicy resources
func (*ClusterImagePolicyList) DeepCopy ¶
func (in *ClusterImagePolicyList) DeepCopy() *ClusterImagePolicyList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ClusterImagePolicyList.
func (*ClusterImagePolicyList) DeepCopyInto ¶
func (in *ClusterImagePolicyList) DeepCopyInto(out *ClusterImagePolicyList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ClusterImagePolicyList) DeepCopyObject ¶
func (in *ClusterImagePolicyList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (ClusterImagePolicyList) FindClusterImagePolicy ¶
func (apl ClusterImagePolicyList) FindClusterImagePolicy(image string) *Policy
FindClusterImagePolicy - Given an ClusterImagePolicyList, find the repository whose name most closely matches the image name, and returns its policy. If there are no matches, return a nil value.
type ICCRVA ¶
type ICCRVA struct { Enabled *bool `json:"enabled,omitempty"` Account string `json:"account,omitempty"` }
ICCRVA IBM Cloud Container Registry Vulnerability Advisor policy
func (*ICCRVA) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ICCRVA.
func (*ICCRVA) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IdentityRequirement ¶
type IdentityRequirement struct { Type string `json:"type"` DockerReference string `json:"dockerReference,omitEmpty"` DockerRepository string `json:"dockerRepository,omitEmpty"` Prefix string `json:"prefix,omitEmpty"` SignedPrefix string `json:"signedPrefix,omitEmpty"` }
IdentityRequirement .
func (*IdentityRequirement) DeepCopy ¶
func (in *IdentityRequirement) DeepCopy() *IdentityRequirement
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IdentityRequirement.
func (*IdentityRequirement) DeepCopyInto ¶
func (in *IdentityRequirement) DeepCopyInto(out *IdentityRequirement)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImagePolicy ¶
type ImagePolicy struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ImagePolicySpec `json:"spec"` }
ImagePolicy is a specification for a ImagePolicy resource
func (*ImagePolicy) DeepCopy ¶
func (in *ImagePolicy) DeepCopy() *ImagePolicy
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImagePolicy.
func (*ImagePolicy) DeepCopyInto ¶
func (in *ImagePolicy) DeepCopyInto(out *ImagePolicy)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ImagePolicy) DeepCopyObject ¶
func (in *ImagePolicy) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type ImagePolicyList ¶
type ImagePolicyList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []ImagePolicy `json:"items"` }
ImagePolicyList is a list of ImagePolicy resources
func (*ImagePolicyList) DeepCopy ¶
func (in *ImagePolicyList) DeepCopy() *ImagePolicyList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImagePolicyList.
func (*ImagePolicyList) DeepCopyInto ¶
func (in *ImagePolicyList) DeepCopyInto(out *ImagePolicyList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ImagePolicyList) DeepCopyObject ¶
func (in *ImagePolicyList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (ImagePolicyList) FindImagePolicy ¶
func (apl ImagePolicyList) FindImagePolicy(image string) *Policy
FindImagePolicy - Given an ImagePolicyList, find the repository whose name most closely matches the image name, and returns its policy. If there are no matches, return a nil value.
type ImagePolicySpec ¶
type ImagePolicySpec struct {
Repositories []Repository `json:"repositories"`
}
ImagePolicySpec is the spec for a ImagePolicy or ClusterImagePolicy resource
func (*ImagePolicySpec) DeepCopy ¶
func (in *ImagePolicySpec) DeepCopy() *ImagePolicySpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImagePolicySpec.
func (*ImagePolicySpec) DeepCopyInto ¶
func (in *ImagePolicySpec) DeepCopyInto(out *ImagePolicySpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Policy ¶
type Policy struct { Trust Trust `json:"trust,omitempty"` Simple Simple `json:"simple,omitempty"` Vulnerability Vulnerability `json:"vulnerability,omitempty"` }
Policy .
func (*Policy) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Policy.
func (*Policy) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Repository ¶
type Repository struct { Name string `json:"name,omitempty"` // Name may contain a * to signify one or more characters Policy Policy `json:"policy,omitempty"` }
Repository .
func (*Repository) DeepCopy ¶
func (in *Repository) DeepCopy() *Repository
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Repository.
func (*Repository) DeepCopyInto ¶
func (in *Repository) DeepCopyInto(out *Repository)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Simple ¶
type Simple struct { Requirements []SimpleRequirement `json:"requirements"` StoreURL string `json:"storeURL,omitEmpty"` StoreSecret string `json:"storeSecret,omitEmpty"` }
Simple .
func (*Simple) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Simple.
func (*Simple) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SimpleRequirement ¶
type SimpleRequirement struct { Type string `json:"type"` KeySecret string `json:"keySecret,omitEmpty"` SignedIdentity IdentityRequirement `json:"signedIdentity,omitEmpty"` }
SimpleRequirement .
func (*SimpleRequirement) DeepCopy ¶
func (in *SimpleRequirement) DeepCopy() *SimpleRequirement
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SimpleRequirement.
func (*SimpleRequirement) DeepCopyInto ¶
func (in *SimpleRequirement) DeepCopyInto(out *SimpleRequirement)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Trust ¶
type Trust struct { Enabled *bool `json:"enabled,omitempty"` SignerSecrets []TrustSigner `json:"signerSecrets,omitempty"` TrustServer string `json:"trustServer,omitempty"` }
Trust .
func (*Trust) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Trust.
func (*Trust) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TrustSigner ¶
type TrustSigner struct {
Name string `json:"name"`
}
TrustSigner .
func (*TrustSigner) DeepCopy ¶
func (in *TrustSigner) DeepCopy() *TrustSigner
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TrustSigner.
func (*TrustSigner) DeepCopyInto ¶
func (in *TrustSigner) DeepCopyInto(out *TrustSigner)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Vulnerability ¶
type Vulnerability struct {
ICCRVA ICCRVA `json:"ICCRVA,omitempty"`
}
Vulnerability policy
func (*Vulnerability) DeepCopy ¶
func (in *Vulnerability) DeepCopy() *Vulnerability
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Vulnerability.
func (*Vulnerability) DeepCopyInto ¶
func (in *Vulnerability) DeepCopyInto(out *Vulnerability)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.