Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for paramKind (0.21 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    				}},
    				ParamKind: &admissionregistration.ParamKind{
    					APIVersion: "test.example.com/v1",
    				},
    			},
    		},
    		expectedError: `spec.paramKind.kind: Required value`,
    	}, {
    		name: "API version format in ParamKind",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "config",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.pb.go

    var xxx_messageInfo_NamedRuleWithOperations proto.InternalMessageInfo
    
    func (m *ParamKind) Reset()      { *m = ParamKind{} }
    func (*ParamKind) ProtoMessage() {}
    func (*ParamKind) Descriptor() ([]byte, []int) {
    	return fileDescriptor_2c49182728ae0af5, []int{5}
    }
    func (m *ParamKind) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ParamKind) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 117.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.pb.go

    var xxx_messageInfo_NamedRuleWithOperations proto.InternalMessageInfo
    
    func (m *ParamKind) Reset()      { *m = ParamKind{} }
    func (*ParamKind) ProtoMessage() {}
    func (*ParamKind) Descriptor() ([]byte, []int) {
    	return fileDescriptor_7f7c65a4f012fb19, []int{8}
    }
    func (m *ParamKind) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ParamKind) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 187.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go

    var xxx_messageInfo_NamedRuleWithOperations proto.InternalMessageInfo
    
    func (m *ParamKind) Reset()      { *m = ParamKind{} }
    func (*ParamKind) ProtoMessage() {}
    func (*ParamKind) Descriptor() ([]byte, []int) {
    	return fileDescriptor_3205c7dc5bf0c9bf, []int{8}
    }
    func (m *ParamKind) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ParamKind) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 200.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	paramKind := "<unset>"
    	if obj.Spec.ParamKind != nil {
    		paramKind = obj.Spec.ParamKind.APIVersion + "/" + obj.Spec.ParamKind.Kind
    	}
    	row.Cells = append(row.Cells, obj.Name, int64(len(obj.Spec.Validations)), paramKind, translateTimestampSince(obj.CreationTimestamp))
    	return []metav1.TableRow{row}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    for params to a specific namespace. Applies to both `name` and `selector` fields.\n\nA per-namespace parameter may be used by specifying a namespace-scoped `paramKind` in the policy and leaving this field empty.\n\n- If `paramKind` is cluster-scoped, this field MUST be unset. Setting this field results in a configuration error.\n\n- If `paramKind` is namespace-scoped, the namespace of the object being evaluated for admission will be used when this field is left unset. Take care that if this is left...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
Back to top