Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for networkpolicy (0.44 sec)

  1. pkg/apis/networking/v1/defaults_test.go

    	tests := []struct {
    		original *networkingv1.NetworkPolicy
    		expected *networkingv1.NetworkPolicy
    	}{
    		{ // Empty NetworkPolicy should be set to PolicyTypes Ingress
    			original: &networkingv1.NetworkPolicy{
    				Spec: networkingv1.NetworkPolicySpec{
    					PodSelector: metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    					},
    				},
    			},
    			expected: &networkingv1.NetworkPolicy{
    				Spec: networkingv1.NetworkPolicySpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. pkg/apis/extensions/v1beta1/defaults_test.go

    	}
    }
    
    func TestSetDefaultNetworkPolicy(t *testing.T) {
    	tests := []struct {
    		original *extensionsv1beta1.NetworkPolicy
    		expected *extensionsv1beta1.NetworkPolicy
    	}{
    		{ // Empty NetworkPolicy should be set to PolicyTypes Ingress
    			original: &extensionsv1beta1.NetworkPolicy{
    				Spec: extensionsv1beta1.NetworkPolicySpec{
    					PodSelector: metav1.LabelSelector{
    						MatchLabels: map[string]string{"a": "b"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/networking/v1/generated.proto

      // and value of the "Host" header is used for routing.
      // +optional
      optional string secretName = 2;
    }
    
    // NetworkPolicy describes what network traffic is allowed for a set of Pods
    message NetworkPolicy {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. pkg/apis/networking/types.go

    // NetworkPolicy describes what network traffic is allowed for a set of pods
    type NetworkPolicy struct {
    	metav1.TypeMeta
    
    	// +optional
    	metav1.ObjectMeta
    
    	// spec represents the specification of the desired behavior for this NetworkPolicy.
    	// +optional
    	Spec NetworkPolicySpec
    }
    
    // PolicyType describes the NetworkPolicy type
    // This type is beta-level in 1.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types.go

    }
    
    // PolicyType string describes the NetworkPolicy type
    // This type is beta-level in 1.8
    // +enum
    type PolicyType string
    
    const (
    	// PolicyTypeIngress is a NetworkPolicy that affects ingress traffic on selected pods
    	PolicyTypeIngress PolicyType = "Ingress"
    	// PolicyTypeEgress is a NetworkPolicy that affects egress traffic on selected pods
    	PolicyTypeEgress PolicyType = "Egress"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. helm/minio/README.md

    ```
    
    ### NetworkPolicy
    
    To enable network policy for MinIO,
    install [a networking plugin that implements the Kubernetes
    NetworkPolicy spec](https://kubernetes.io/docs/tasks/administer-cluster/declare-network-policy#before-you-begin),
    and set `networkPolicy.enabled` to `true`.
    
    For Kubernetes v1.5 & v1.6, you must also turn on NetworkPolicy by setting
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    var map_NetworkPolicy = map[string]string{
    	"":         "NetworkPolicy describes what network traffic is allowed for a set of Pods",
    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"spec":     "spec represents the specification of the desired behavior for this NetworkPolicy.",
    }
    
    func (NetworkPolicy) SwaggerDoc() map[string]string {
    	return map_NetworkPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/generated.proto

      // and value of the "Host" header is used for routing.
      // +optional
      optional string secretName = 2;
    }
    
    // NetworkPolicy describes what network traffic is allowed for a set of Pods
    message NetworkPolicy {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/zz_generated.deepcopy.go

    func (in *NetworkPolicy) DeepCopyInto(out *NetworkPolicy) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkPolicy.
    func (in *NetworkPolicy) DeepCopy() *NetworkPolicy {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 20K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // Host header is used for routing.
      // +optional
      optional string secretName = 2;
    }
    
    // DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy.
    // NetworkPolicy describes what network traffic is allowed for a set of Pods
    message NetworkPolicy {
      // Standard object's metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top