Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ImageReviewSpec (0.39 sec)

  1. pkg/apis/imagepolicy/v1alpha1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1alpha1.ImageReviewSpec)(nil), (*imagepolicy.ImageReviewSpec)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_ImageReviewSpec_To_imagepolicy_ImageReviewSpec(a.(*v1alpha1.ImageReviewSpec), b.(*imagepolicy.ImageReviewSpec), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/imagepolicy/v1alpha1/generated.proto

    message ImageReviewContainerSpec {
      // This can be in the form image:tag or image@SHA:012345679abcdef.
      // +optional
      optional string image = 1;
    }
    
    // ImageReviewSpec is a description of the pod creation request.
    message ImageReviewSpec {
      // Containers is a list of a subset of the information in each container of the Pod being created.
      // +optional
      repeated ImageReviewContainerSpec containers = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/imagepolicy/v1alpha1/generated.proto

    message ImageReviewContainerSpec {
      // This can be in the form image:tag or image@SHA:012345679abcdef.
      // +optional
      optional string image = 1;
    }
    
    // ImageReviewSpec is a description of the pod creation request.
    message ImageReviewSpec {
      // Containers is a list of a subset of the information in each container of the Pod being created.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/apis/imagepolicy/zz_generated.deepcopy.go

    			(*out)[key] = val
    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageReviewSpec.
    func (in *ImageReviewSpec) DeepCopy() *ImageReviewSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(ImageReviewSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/imagepolicy/v1alpha1/zz_generated.deepcopy.go

    			(*out)[key] = val
    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageReviewSpec.
    func (in *ImageReviewSpec) DeepCopy() *ImageReviewSpec {
    	if in == nil {
    		return nil
    	}
    	out := new(ImageReviewSpec)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/imagepolicy/v1alpha1/generated.pb.go

    func (m *ImageReviewSpec) Reset()      { *m = ImageReviewSpec{} }
    func (*ImageReviewSpec) ProtoMessage() {}
    func (*ImageReviewSpec) Descriptor() ([]byte, []int) {
    	return fileDescriptor_7620d1538838ac6f, []int{2}
    }
    func (m *ImageReviewSpec) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ImageReviewSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  7. pkg/apis/imagepolicy/types.go

    	metav1.TypeMeta
    	metav1.ObjectMeta
    
    	// Spec holds information about the pod being evaluated
    	Spec ImageReviewSpec
    
    	// Status is filled in by the backend and indicates whether the pod should be allowed.
    	Status ImageReviewStatus
    }
    
    // ImageReviewSpec is a description of the pod creation request.
    type ImageReviewSpec struct {
    	// Containers is a list of a subset of the information in each container of the Pod being created.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/imagepolicy/v1alpha1/types.go

    	Spec ImageReviewSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    	// Status is filled in by the backend and indicates whether the pod should be allowed.
    	// +optional
    	Status ImageReviewStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // ImageReviewSpec is a description of the pod creation request.
    type ImageReviewSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/imagepolicy/v1alpha1/types_swagger_doc_generated.go

    }
    
    func (ImageReviewContainerSpec) SwaggerDoc() map[string]string {
    	return map_ImageReviewContainerSpec
    }
    
    var map_ImageReviewSpec = map[string]string{
    	"":            "ImageReviewSpec is a description of the pod creation request.",
    	"containers":  "Containers is a list of a subset of the information in each container of the Pod being created.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. plugin/pkg/admission/imagepolicy/admission.go

    			imageReviewContainerSpecs = append(imageReviewContainerSpecs, v1alpha1.ImageReviewContainerSpec{
    				Image: c.Image,
    			})
    		}
    	}
    	imageReview := v1alpha1.ImageReview{
    		Spec: v1alpha1.ImageReviewSpec{
    			Containers:  imageReviewContainerSpecs,
    			Annotations: a.filterAnnotations(pod.Annotations),
    			Namespace:   attributes.GetNamespace(),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top