Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for clusterIPs (0.2 sec)

  1. pkg/proxy/nftables/proxier.go

    		Type:    ipvX_addr,
    		Comment: ptr.To("Active ClusterIPs"),
    	})
    
    	// reject traffic to invalid ports of ClusterIPs.
    	tx.Add(&knftables.Rule{
    		Chain: clusterIPsCheckChain,
    		Rule: knftables.Concat(
    			ipX, "daddr", "@", clusterIPsSet, "reject",
    		),
    		Comment: ptr.To("Reject traffic to invalid ports of ClusterIPs"),
    	})
    
    	// drop traffic to unallocated ClusterIPs.
    	if len(proxier.serviceCIDRs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    							Port:     2233,
    						},
    					},
    					ClusterIPs: []string{"10.9.8.7"},
    				},
    			},
    			{
    				ObjectMeta: metav1.ObjectMeta{Name: "service2"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeNodePort,
    					Ports: []api.ServicePort{
    						{
    							Protocol: "udp",
    							Port:     5566,
    						},
    					},
    					ClusterIPs: []string{"1.2.3.4"},
    				},
    			},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. tests/integration/pilot/gateway_test.go

    		RequiresLocalControlPlane().
    		Run(func(t framework.TestContext) {
    			c := t.Clusters().Default()
    			var svc *corev1.Service
    			svc, _, err := testKube.WaitUntilServiceEndpointsAreReady(c.Kube(), "istio-system", "istio-ingressgateway")
    			if err != nil {
    				t.Fatalf("error getting ingress gateway svc ips: %v", err)
    			}
    			for _, ip := range svc.Spec.ClusterIPs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) ForNetworks(networks ...string) Clusters {
    	out := make(Clusters, 0, len(c))
    	for _, cc := range c {
    		for _, network := range networks {
    			if cc.NetworkName() == network {
    				out = append(out, cc)
    				break
    			}
    		}
    	}
    	return out
    }
    
    // Primaries returns the subset that are primary clusters.
    func (c Clusters) Primaries(excluded ...Cluster) Clusters {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	svcType := obj.Spec.Type
    	internalIP := "<none>"
    	if len(obj.Spec.ClusterIPs) > 0 {
    		internalIP = obj.Spec.ClusterIPs[0]
    	}
    
    	externalIP := getServiceExternalIP(obj, options.Wide)
    	svcPorts := makePortString(obj.Spec.Ports)
    	if len(svcPorts) == 0 {
    		svcPorts = "<none>"
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  6. pkg/kubelet/network/dns/dns_test.go

    			expectedError: true,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.desc, func(t *testing.T) {
    			if tc.hasClusterDNS {
    				configurer.clusterDNS = testClusterDNS
    			} else {
    				configurer.clusterDNS = nil
    			}
    			pod.Spec.DNSPolicy = tc.dnsPolicy
    			pod.Spec.HostNetwork = tc.hostNetwork
    
    			resType, err := getPodDNSType(pod)
    			if tc.expectedError {
    				if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/kube.go

    	for _, c := range ctx.Clusters().Configs().Remotes() {
    		if err = i.reinstallConfigCluster(c); err != nil {
    			return i, err
    		}
    	}
    
    	// Install (non-config) remote clusters.
    	errG = multierror.Group{}
    	for _, c := range ctx.Clusters().Remotes(ctx.Clusters().Configs()...) {
    		c := c
    		errG.Go(func() error {
    			if err := i.installRemoteCluster(c); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - Added a new `ServiceCIDR` type that allows to dynamically configure the cluster range used to allocate `Service ClusterIPs` addresses. ([#116516](https://github.com/kubernetes/kubernetes/pull/116516), [@aojea](https://github.com/aojea))
    - Added a new `ipMode` field to the `.status` of Services where `type` is set to `LoadBalancer`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/environment/kube/kube.go

    }
    
    func (e *Environment) AllClusters() cluster.Clusters {
    	out := make([]cluster.Cluster, 0, len(e.clusters))
    	out = append(out, e.clusters...)
    	return out
    }
    
    func (e *Environment) Clusters() cluster.Clusters {
    	return e.AllClusters().MeshClusters()
    }
    
    // ClustersByNetwork returns an inverse mapping of the network topolgoy to a slice of clusters in a given network.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    		clusters = outboundPatcher.conditionallyAppend(clusters, nil, cb.buildBlackHoleCluster(), cb.buildDefaultPassthroughCluster())
    		clusters = append(clusters, outboundPatcher.insertedClusters()...)
    		// Setup inbound clusters
    		inboundPatcher := clusterPatcher{efw: envoyFilterPatches, pctx: networking.EnvoyFilter_SIDECAR_INBOUND}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top