Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for externalapi (0.19 sec)

  1. pkg/proxy/serviceport.go

    	// SessionAffinityType returns service session affinity type
    	SessionAffinityType() v1.ServiceAffinity
    	// StickyMaxAgeSeconds returns service max connection age
    	StickyMaxAgeSeconds() int
    	// ExternalIPs returns service ExternalIPs
    	ExternalIPs() []net.IP
    	// LoadBalancerVIPs returns service LoadBalancerIPs which are VIP mode
    	LoadBalancerVIPs() []net.IP
    	// Protocol returns service protocol.
    	Protocol() v1.Protocol
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload.go

    				return err
    			}
    			fmt.Printf("Configuration generation into directory %s was successful\n", outputDir)
    			return nil
    		},
    		PreRunE: func(cmd *cobra.Command, args []string) error {
    			if len(internalIP) > 0 && len(externalIP) > 0 {
    				return fmt.Errorf("the flags --internalIP and --externalIP are mutually exclusive")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier_test.go

    		if svcInfo.nodePorthnsID != "" {
    			t.Errorf("NodePortHnsID %v is not empty.", svcInfo.nodePorthnsID)
    		}
    		// Verifying ExternalIP Loadbalancer is not created
    		for _, externalIP := range svcInfo.externalIPs {
    			if externalIP.hnsID != "" {
    				t.Errorf("ExternalLBID %v is not empty.", externalIP.hnsID)
    			}
    		}
    		// Verifying IngressIP Loadbalancer is not created
    		for _, ingressIP := range svcInfo.loadBalancerIngressIPs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/number_generated_rules_test.go

    			expectedNatRules:    325,
    		},
    
    		{
    			name: "0 Services 0 EndpointsPerService - LoadBalancer",
    			svcFunc: func(svc *v1.Service) {
    				svc.Spec.Type = v1.ServiceTypeLoadBalancer
    				svc.Spec.ExternalIPs = []string{"1.2.3.4"}
    				svc.Spec.LoadBalancerSourceRanges = []string{" 1.2.3.4/28"}
    				svc.Status.LoadBalancer.Ingress = []v1.LoadBalancerIngress{{
    					IP: "1.2.3.4",
    				}}
    			},
    			services:            0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/instrumented_services.go

    func newInstrumentedRuntimeService(service internalapi.RuntimeService) internalapi.RuntimeService {
    	return &instrumentedRuntimeService{service: service}
    }
    
    // instrumentedImageManagerService wraps the ImageManagerService and records the operations
    // and errors metrics.
    type instrumentedImageManagerService struct {
    	service internalapi.ImageManagerService
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pkg/proxy/servicechangetracker_test.go

    					svcInfo.port != expectedInfo.port ||
    					svcInfo.protocol != expectedInfo.protocol ||
    					svcInfo.healthCheckNodePort != expectedInfo.healthCheckNodePort ||
    					!reflect.DeepEqual(svcInfo.externalIPs, expectedInfo.externalIPs) ||
    					!reflect.DeepEqual(svcInfo.loadBalancerSourceRanges, expectedInfo.loadBalancerSourceRanges) ||
    					!reflect.DeepEqual(svcInfo.loadBalancerVIPs, expectedInfo.loadBalancerVIPs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. pkg/api/service/warnings_test.go

    			s.Annotations = map[string]string{api.DeprecatedAnnotationTopologyAwareHints: "foo"}
    		},
    		numWarnings: 1,
    	}, {
    		name: "externalIPs set when type is ExternalName",
    		tweakSvc: func(s *api.Service) {
    			s.Spec.Type = api.ServiceTypeExternalName
    			s.Spec.ExternalIPs = []string{"1.2.3.4"}
    		},
    		numWarnings: 1,
    	}, {
    		name: "externalName set when type is not ExternalName",
    		tweakSvc: func(s *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 26 22:57:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            """
        }
    
        def "project dependency includes artifacts and transitive dependencies of default configuration in target project"() {
            given:
            mavenRepo.module("org.other", "externalA", "1.2").publish()
            mavenRepo.module("org.other", "externalB", "2.1").publish()
    
            and:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--enable-bootstrap-token-auth=true",
    				"--secure-port=123",
    				"--allow-privileged=true",
    				"--kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname",
    				"--proxy-client-cert-file=" + filepath.FromSlash("/var/lib/certs/front-proxy-client.crt"),
    				"--proxy-client-key-file=" + filepath.FromSlash("/var/lib/certs/front-proxy-client.key"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/sets"
    	internalapi "k8s.io/cri-api/pkg/apis"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // containerGC is the manager of garbage collection.
    type containerGC struct {
    	client           internalapi.RuntimeService
    	manager          *kubeGenericRuntimeManager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top