Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for IPBlock (0.09 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.NetworkPolicy.json

                      "operator": "operatorValue",
                      "values": [
                        "valuesValue"
                      ]
                    }
                  ]
                },
                "ipBlock": {
                  "cidr": "cidrValue",
                  "except": [
                    "exceptValue"
                  ]
                }
              }
            ]
          }
        ],
        "egress": [
          {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.NetworkPolicy.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      egress:
      - ports:
        - endPort: 3
          port: portValue
          protocol: protocolValue
        to:
        - ipBlock:
            cidr: cidrValue
            except:
            - exceptValue
          namespaceSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1.NetworkPolicy.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      egress:
      - ports:
        - endPort: 3
          port: portValue
          protocol: protocolValue
        to:
        - ipBlock:
            cidr: cidrValue
            except:
            - exceptValue
          namespaceSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/extensions.v1beta1.NetworkPolicy.yaml

      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      egress:
      - ports:
        - endPort: 3
          port: portValue
          protocol: protocolValue
        to:
        - ipBlock:
            cidr: cidrValue
            except:
            - exceptValue
          namespaceSelector:
            matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. pkg/apis/networking/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.IPBlock)(nil), (*networking.IPBlock)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_IPBlock_To_networking_IPBlock(a.(*v1.IPBlock), b.(*networking.IPBlock), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.IPBlock)(nil), (*v1.IPBlock)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. pkg/apis/networking/fuzzer/fuzzer.go

    			c.FuzzNoCustom(np) // fuzz self without calling this function again
    			// TODO: Implement a fuzzer to generate valid keys, values and operators for
    			// selector requirements.
    			if np.IPBlock != nil {
    				np.IPBlock = &networking.IPBlock{
    					CIDR:   "192.168.1.0/24",
    					Except: []string{"192.168.1.1/24", "192.168.1.2/24"},
    				}
    			}
    		},
    		func(np *networking.NetworkPolicy, c fuzz.Continue) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. pkg/apis/networking/validation/validation_test.go

    		networkPolicy.Spec.Ingress[0].From[0].IPBlock = &networking.IPBlock{
    			CIDR:   "192.168.0.0/16",
    			Except: []string{"192.168.3.0/24", "192.168.4.0/24"},
    		}
    	}
    
    	setIngressFromIPBlockIPV6 := func(networkPolicy *networking.NetworkPolicy) {
    		setIngressFromIfEmpty(networkPolicy)
    		networkPolicy.Spec.Ingress[0].From[0].IPBlock = &networking.IPBlock{
    			CIDR:   "fd00:192:168::/48",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  8. cluster/addons/dns/nodelocaldns/README.md

    One way to enable connectivity from node-local-dns pods to clusterDNS ip is to use an ipBlock rule instead:
    
    ```
    spec:
      egress:
      - ports:
        - port: 53
          protocol: TCP
        - port: 53
          protocol: UDP
        to:
        - ipBlock:
            cidr: <well-known clusterIP for DNS>/32
      podSelector: {}
      policyTypes:
      - Ingress
      - Egress
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/types.go

    	NamespaceSelector *metav1.LabelSelector `json:"namespaceSelector,omitempty" protobuf:"bytes,2,opt,name=namespaceSelector"`
    
    	// ipBlock defines policy on a particular IPBlock. If this field is set then
    	// neither of the other fields can be.
    	// +optional
    	IPBlock *IPBlock `json:"ipBlock,omitempty" protobuf:"bytes,3,rep,name=ipBlock"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *IPBlock) DeepCopyInto(out *IPBlock) {
    	*out = *in
    	if in.Except != nil {
    		in, out := &in.Except, &out.Except
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPBlock.
    func (in *IPBlock) DeepCopy() *IPBlock {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
Back to top