Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ImageReviewStatus (0.3 sec)

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

    	if err := s.AddGeneratedConversionFunc((*v1alpha1.ImageReviewStatus)(nil), (*imagepolicy.ImageReviewStatus)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha1_ImageReviewStatus_To_imagepolicy_ImageReviewStatus(a.(*v1alpha1.ImageReviewStatus), b.(*imagepolicy.ImageReviewStatus), 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

      map<string, string> annotations = 2;
    
      // Namespace is the namespace the pod is being created in.
      // +optional
      optional string namespace = 3;
    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    message ImageReviewStatus {
      // Allowed indicates that all images were allowed to be run.
      optional bool allowed = 1;
    
      // Reason should be empty unless Allowed is false in which case it
    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

      map<string, string> annotations = 2;
    
      // Namespace is the namespace the pod is being created in.
      // +optional
      optional string namespace = 3;
    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    message ImageReviewStatus {
      // Allowed indicates that all images were allowed to be run.
      optional bool allowed = 1;
    
      // Reason should be empty unless Allowed is false in which case it
    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

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageReviewStatus.
    func (in *ImageReviewStatus) DeepCopy() *ImageReviewStatus {
    	if in == nil {
    		return nil
    	}
    	out := new(ImageReviewStatus)
    	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

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImageReviewStatus.
    func (in *ImageReviewStatus) DeepCopy() *ImageReviewStatus {
    	if in == nil {
    		return nil
    	}
    	out := new(ImageReviewStatus)
    	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 *ImageReviewStatus) Reset()      { *m = ImageReviewStatus{} }
    func (*ImageReviewStatus) ProtoMessage() {}
    func (*ImageReviewStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_7620d1538838ac6f, []int{3}
    }
    func (m *ImageReviewStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ImageReviewStatus) 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

    	Image string
    	// In future, we may add command line overrides, exec health check command lines, and so on.
    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    type ImageReviewStatus struct {
    	// Allowed indicates that all images were allowed to be run.
    	Allowed bool
    	// Reason should be empty unless Allowed is false in which case it
    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

    	Image string `json:"image,omitempty" protobuf:"bytes,1,opt,name=image"`
    	// In future, we may add command line overrides, exec health check command lines, and so on.
    }
    
    // ImageReviewStatus is the result of the review for the pod creation request.
    type ImageReviewStatus struct {
    	// Allowed indicates that all images were allowed to be run.
    	Allowed bool `json:"allowed" protobuf:"varint,1,opt,name=allowed"`
    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 (ImageReviewSpec) SwaggerDoc() map[string]string {
    	return map_ImageReviewSpec
    }
    
    var map_ImageReviewStatus = map[string]string{
    	"":                 "ImageReviewStatus is the result of the review for the pod creation request.",
    	"allowed":          "Allowed indicates that all images were allowed to be run.",
    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

    	allowTTL      time.Duration
    	denyTTL       time.Duration
    	defaultAllow  bool
    }
    
    var _ admission.ValidationInterface = &Plugin{}
    
    func (a *Plugin) statusTTL(status v1alpha1.ImageReviewStatus) time.Duration {
    	if status.Allowed {
    		return a.allowTTL
    	}
    	return a.denyTTL
    }
    
    // Filter out annotations that don't match *.image-policy.k8s.io/*
    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