Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for clusterScope (0.29 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `clusterScope` indicates whether to match requests that do not
    	// specify a namespace (which happens either because the resource
    	// is not namespaced or the request targets all namespaces).
    	// If this field is omitted or false then the `namespaces` field
    	// must contain a non-empty list.
    	// +optional
    	ClusterScope bool `json:"clusterScope,omitempty" protobuf:"varint,4,opt,name=clusterScope"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/config/schema/collections/collections.gen.go

    		ProtoPackage: "istio.io/api/security/v1beta1", StatusPackage: "istio.io/api/meta/v1alpha1",
    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       false,
    		ValidateProto: validation.ValidateAuthorizationPolicy,
    	}.MustBuild()
    
    	CertificateSigningRequest = resource.Builder{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  3. pkg/config/schema/collections/collections.agent.gen.go

    		ProtoPackage: "istio.io/api/security/v1beta1", StatusPackage: "istio.io/api/meta/v1alpha1",
    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       false,
    		ValidateProto: validation.ValidateAuthorizationPolicy,
    	}.MustBuild()
    
    	DestinationRule = resource.Builder{
    		Identifier: "DestinationRule",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer tearDown()
    
    	noxuDefinition := fixtures.NewNoxuV1CustomResourceDefinition(apiextensionsv1.ClusterScoped)
    	noxuDefinition, err = fixtures.CreateNewV1CustomResourceDefinition(noxuDefinition, apiExtensionClient, dynamicClient)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	ns := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    		},
    		Names: apiextensionsv1.CustomResourceDefinitionNames{
    			Plural:   "shirts",
    			Singular: "shirt",
    			Kind:     "Shirt",
    			ListKind: "ShirtList",
    		},
    		Scope:                 apiextensionsv1.ClusterScoped,
    		PreserveUnknownFields: false,
    	},
    }
    
    const shirtInstance1 = `
    kind: Shirt
    apiVersion: tests.example.com/v1
    metadata:
      name: shirt1
    spec:
      color: blue
      quantity: 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    }
    
    // ResourceScope is an enum defining the different scopes available to a custom resource
    type ResourceScope string
    
    const (
    	ClusterScoped   ResourceScope = "Cluster"
    	NamespaceScoped ResourceScope = "Namespaced"
    )
    
    type ConditionStatus string
    
    // These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top