Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 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. 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)
  4. 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)
  5. 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)
  6. pilot/pkg/networking/core/cluster_test.go

    				Instances: instances,
    				Configs:   cfgs,
    			})
    			clusters := cg.Clusters(cg.SetupProxy(nil))
    			xdstest.ValidateClusters(t, clusters)
    			if c.filter != nil {
    				clusters = xdstest.FilterClusters(clusters, c.filter)
    			}
    			g.Expect(len(clusters)).ShouldNot(Equal(0))
    
    			for _, cluster := range clusters {
    				g.Expect(cluster.CircuitBreakers).NotTo(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder.go

    	}
    }
    
    // normalizeClusters normalizes clusters to avoid duplicate clusters. This should be called
    // at the end before adding the cluster to list of clusters.
    func (cb *ClusterBuilder) normalizeClusters(clusters []*discovery.Resource) []*discovery.Resource {
    	// resolve cluster name conflicts. there can be duplicate cluster names if there are conflicting service definitions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. pilot/pkg/features/pilot.go

    		"If true, pilot will configure an additional IPv4 listener for outbound traffic in IPv6 only clusters, e.g. AWS EKS IPv6 only clusters.").Get()
    
    	EnableAutoSni = env.Register("ENABLE_AUTO_SNI", true,
    		"If enabled, automatically set SNI when `DestinationRules` do not specify the same").Get()
    
    	VerifyCertAtClient = env.Register("VERIFY_CERTIFICATE_AT_CLIENT", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. releasenotes/notes/51506.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 51506
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 242 bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	if currentConfig.Clusters[currentCluster].Server != config.Clusters[expectedCluster].Server {
    		klog.Warningf("a kubeconfig file %q exists already but has an unexpected API Server URL: expected: %s, got: %s",
    			kubeConfigFilePath, config.Clusters[expectedCluster].Server, currentConfig.Clusters[currentCluster].Server)
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top