Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 915 for Namespaced (0.14 sec)

  1. api/discovery/apis__admissionregistration.k8s.io__v1.json

          "name": "validatingadmissionpolicies/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "categories": [
            "api-extensions"
          ],
          "kind": "ValidatingAdmissionPolicyBinding",
          "name": "validatingadmissionpolicybindings",
          "namespaced": false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. api/discovery/apis__admissionregistration.k8s.io__v1alpha1.json

          "name": "validatingadmissionpolicies/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "categories": [
            "api-extensions"
          ],
          "kind": "ValidatingAdmissionPolicyBinding",
          "name": "validatingadmissionpolicybindings",
          "namespaced": false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. pkg/util/kernel/constants.go

    // (ref: https://github.com/torvalds/linux/commit/13b287e8d1cad951634389f85b8c9b816bd3bb1e)
    const TCPKeepAliveTimeNamespacedKernelVersion = "4.5"
    
    // TCPKeepAliveIntervalNamespacedKernelVersion is the kernel version in which net.ipv4.tcp_keepalive_intvl was namespaced(netns).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. api/discovery/apis__admissionregistration.k8s.io__v1beta1.json

          "name": "validatingadmissionpolicies/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
          ]
        },
        {
          "categories": [
            "api-extensions"
          ],
          "kind": "ValidatingAdmissionPolicyBinding",
          "name": "validatingadmissionpolicybindings",
          "namespaced": false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. api/discovery/apis__discovery.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "discovery.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "EndpointSlice",
          "name": "endpointslices",
          "namespaced": true,
          "singularName": "endpointslice",
          "storageVersionHash": "qgS0xkrxYAI=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 06:31:58 UTC 2024
    - 472 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	ResponseKind *v1.GroupVersionKind `json:"responseKind,omitempty" protobuf:"bytes,2,opt,name=responseKind"`
    	// scope indicates the scope of a resource, either Cluster or Namespaced
    	Scope ResourceScope `json:"scope" protobuf:"bytes,3,opt,name=scope"`
    	// singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/controller/storageversionmigrator/resourceversion.go

    )
    
    const (
    	// this name is guaranteed to be not present in the cluster as it not a valid namespace name
    	fakeSVMNamespaceName          string = "@fake:svm_ns!"
    	ResourceVersionControllerName string = "resource-version-controller"
    )
    
    // ResourceVersionController adds the resource version obtained from a randomly nonexistent namespace
    // to the SVM status before the migration is initiated. This resource version is utilized for checking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/html/template/doc.go

    # Namespaced and data- attributes
    
    Attributes with a namespace are treated as if they had no namespace.
    Given the excerpt
    
    	<a my:href="{{.}}"></a>
    
    At parse time the attribute will be treated as if it were just "href".
    So at parse time the template becomes:
    
    	<a my:href="{{. | urlescaper | attrescaper}}"></a>
    
    Similarly to attributes with namespaces, attributes with a "data-" prefix are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller.go

    	var newObj T
    	var err error
    	var namespace string
    	var name string
    	var lister NamespacedLister[T]
    
    	// Convert the namespace/name string into a distinct namespace and name
    	namespace, name, err = cache.SplitMetaNamespaceKey(key)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("invalid resource key: %s", key))
    		return nil
    	}
    
    	if len(namespace) > 0 {
    		lister = c.informer.Namespaced(namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/common/deployment/namespace.go

    	namespaces, err := namespace.GetAll(t)
    	if err != nil {
    		return fmt.Errorf("failed retrieving list of namespaces: %v", err)
    	}
    
    	// Restrict egress from this namespace to only those endpoints in the same Echos.
    	cfg := t.ConfigIstio().New()
    	cfg.Eval(ns.Name(), map[string]any{
    		"Namespaces": namespaces,
    	}, `
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: restrict-to-namespace
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top