Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for externalIPs (1 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ClusterIP = in.ClusterIP
    	out.ClusterIPs = *(*[]string)(unsafe.Pointer(&in.ClusterIPs))
    	out.Type = core.ServiceType(in.Type)
    	out.ExternalIPs = *(*[]string)(unsafe.Pointer(&in.ExternalIPs))
    	out.SessionAffinity = core.ServiceAffinity(in.SessionAffinity)
    	out.LoadBalancerIP = in.LoadBalancerIP
    	out.LoadBalancerSourceRanges = *(*[]string)(unsafe.Pointer(&in.LoadBalancerSourceRanges))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    
      // externalIPs is a list of IP addresses for which nodes in the cluster
      // will also accept traffic for this service.  These IPs are not managed by
      // Kubernetes.  The user is responsible for ensuring that traffic arrives
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"externalIPs":                   "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service.  These IPs are not managed by Kubernetes.  The user is responsible for ensuring that traffic arrives at a node with this IP.  A...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/tunneling_test.go

    			meshNs := apps.A.NamespaceName()
    			externalNs := apps.External.Namespace.Name()
    
    			applyForwardProxyConfigMaps(ctx, externalNs)
    			ctx.ConfigIstio().File(externalNs, "testdata/external-forward-proxy-deployment.yaml").ApplyOrFail(ctx)
    			applyForwardProxyService(ctx, externalNs)
    			externalForwardProxyIPs, err := i.PodIPsFor(ctx.Clusters().Default(), externalNs, "app=external-forward-proxy")
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types
      // +optional
      optional string type = 4;
    
      // externalIPs is a list of IP addresses for which nodes in the cluster
      // will also accept traffic for this service.  These IPs are not managed by
      // Kubernetes.  The user is responsible for ensuring that traffic arrives
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. tests/integration/security/main_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	// Namespaces
    	echo1NS    namespace.Instance
    	echo2NS    namespace.Instance
    	externalNS namespace.Instance
    	serverNS   namespace.Instance
    
    	// Servers
    	apps             deployment.TwoNamespaceView
    	authzServer      authz.Server
    	localAuthzServer authz.Server
    	jwtServer        jwt.Server
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			namespace.Setup(&externalNS, namespace.Config{Prefix: "external", Inject: false})).
    		SetupParallel(
    			deployment.Setup(&apps, deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    					namespace.Future(&echo2NS),
    					namespace.Future(&echo3NS),
    				},
    				ExternalNamespace: namespace.Future(&externalNS),
    			})).
    		Run()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.pb.go

    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.SessionAffinity)))
    	i--
    	dAtA[i] = 0x3a
    	if len(m.ExternalIPs) > 0 {
    		for iNdEx := len(m.ExternalIPs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ExternalIPs[iNdEx])
    			copy(dAtA[i:], m.ExternalIPs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ExternalIPs[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		}
    	}
    
    	// dualstack <-> ClusterIPs <-> ipfamilies
    	allErrs = append(allErrs, ValidateServiceClusterIPsRelatedFields(service)...)
    
    	ipPath := specPath.Child("externalIPs")
    	for i, ip := range service.Spec.ExternalIPs {
    		idxPath := ipPath.Index(i)
    		if errs := validation.IsValidIP(idxPath, ip); len(errs) != 0 {
    			allErrs = append(allErrs, errs...)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. cluster/addons/metrics-server/metrics-server-deployment.yaml

            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
            - --kubelet-preferred-address-types=InternalIP,Hostname,InternalDNS,ExternalDNS,ExternalIP
            - --cert-dir=/tmp
            - --secure-port=10250
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
            readinessProbe:
              httpGet:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top