Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for networkpolicies (0.18 sec)

  1. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
      name: networkpolicies.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: NetworkPolicy
        listKind: NetworkPolicyList
        plural: networkpolicies
        singular: networkpolicy
      scope: Namespaced
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - patch
        - update
      - apiGroups:
        - extensions
        resources:
        - daemonsets
        - deployments
        - deployments/rollback
        - deployments/scale
        - ingresses
        - networkpolicies
        - replicasets
        - replicasets/scale
        - replicationcontrollers/scale
        verbs:
        - create
        - delete
        - deletecollection
        - patch
        - update
      - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    					"replicasets", "replicasets/scale", "replicationcontrollers/scale",
    					"networkpolicies").RuleOrDie(),
    
    				rbacv1helpers.NewRule(Write...).Groups(policyGroup).Resources("poddisruptionbudgets").RuleOrDie(),
    
    				rbacv1helpers.NewRule(Write...).Groups(networkingGroup).Resources("networkpolicies", "ingresses").RuleOrDie(),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector podSelector = 1;
    
      // ingress is a list of ingress rules to be applied to the selected pods.
      // Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod
      // (and cluster policy otherwise allows the traffic), OR if the traffic source is
      // the pod's local node, OR if the traffic matches at least one ingress rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    	"ingress":     "ingress is a list of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1/generated.proto

      optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector podSelector = 1;
    
      // ingress is a list of ingress rules to be applied to the selected pods.
      // Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod
      // (and cluster policy otherwise allows the traffic), OR if the traffic source is
      // the pod's local node, OR if the traffic matches at least one ingress rule
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. pkg/apis/networking/types.go

    	// An empty podSelector matches all pods in this namespace.
    	PodSelector metav1.LabelSelector
    
    	// ingress is a list of ingress rules to be applied to the selected pods.
    	// Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod
    	// (and cluster policy otherwise allows the traffic), OR if the traffic source is
    	// the pod's local node, OR if the traffic matches at least one ingress rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types.go

    	PodSelector metav1.LabelSelector `json:"podSelector" protobuf:"bytes,1,opt,name=podSelector"`
    
    	// ingress is a list of ingress rules to be applied to the selected pods.
    	// Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod
    	// (and cluster policy otherwise allows the traffic), OR if the traffic source is
    	// the pod's local node, OR if the traffic matches at least one ingress rule
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"ingress":     "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector podSelector = 1;
    
      // List of ingress rules to be applied to the selected pods.
      // Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod
      // OR if the traffic source is the pod's local node,
      // OR if the traffic matches at least one ingress rule across all of the NetworkPolicy
      // objects whose podSelector matches the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top