Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for networkpolicies (0.27 sec)

  1. pkg/config/schema/kubeclient/common_test.go

    )
    
    func TestCustomRegistration(t *testing.T) {
    	Register[*v1.NetworkPolicy](
    		v1.SchemeGroupVersion.WithResource("networkpolicies"),
    		v1.SchemeGroupVersion.WithKind("NetworkPolicy"),
    		func(c ClientGetter, namespace string, o metav1.ListOptions) (runtime.Object, error) {
    			return c.Kube().NetworkingV1().NetworkPolicies(namespace).List(context.Background(), o)
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. cluster/addons/kube-network-policies/kube-network-policies-rbac.yaml

        resources:
          - pods
          - nodes
          - namespaces
        verbs:
          - get
          - watch
          - list
      # Watch for changes to Kubernetes NetworkPolicies.
      - apiGroups: ["networking.k8s.io"]
        resources:
          - networkpolicies
        verbs:
          - watch
          - list
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: kube-network-policies
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 10:01:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kube/krt/informer_test.go

    	}
    	c := kube.NewFakeClient(np)
    
    	kubeclient.Register[*v1.NetworkPolicy](
    		v1.SchemeGroupVersion.WithResource("networkpolicies"),
    		v1.SchemeGroupVersion.WithKind("NetworkPolicy"),
    		func(c kubeclient.ClientGetter, namespace string, o metav1.ListOptions) (runtime.Object, error) {
    			return c.Kube().NetworkingV1().NetworkPolicies(namespace).List(context.Background(), o)
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/default_storage_factory_builder.go

    		c.DefaultStorageMediaType,
    		c.Serializer,
    		resourceEncodingConfig,
    		c.APIResourceConfig,
    		SpecialDefaultResourcePrefixes)
    
    	storageFactory.AddCohabitatingResources(networking.Resource("networkpolicies"), extensions.Resource("networkpolicies"))
    	storageFactory.AddCohabitatingResources(apps.Resource("deployments"), extensions.Resource("deployments"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pkg/controlplane/storageversionhashdata/data.go

    	"coordination.k8s.io/v1/leases":                                     "gqkMMb/YqFM=",
    	"discovery.k8s.io/v1/endpointslices":                                "qgS0xkrxYAI=",
    	"networking.k8s.io/v1/networkpolicies":                              "YpfwF18m1G8=",
    	"networking.k8s.io/v1/ingresses":                                    "39NQlfNR+bo=",
    	"networking.k8s.io/v1/ingressclasses":                               "l/iqIbDgFyQ=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. 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)
  7. prow/config/calico.yaml

    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      name: networkpolicies.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: NetworkPolicy
        listKind: NetworkPolicyList
        plural: networkpolicies
        singular: networkpolicy
      preserveUnknownFields: false
      scope: Namespaced
      versions:
      - name: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

          "properties": {
            "egress": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							},
    						},
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top