Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for IPFamilies (0.14 sec)

  1. pkg/test/framework/components/echo/kube/deployment.go

    		"Service":        cfg.Service,
    		"Headless":       cfg.Headless,
    		"ServiceAccount": cfg.ServiceAccount,
    		"ServicePorts":   cfg.Ports.GetServicePorts(),
    		"ServiceLabels":  cfg.ServiceLabels,
    		"IPFamilies":     cfg.IPFamilies,
    		"IPFamilyPolicy": cfg.IPFamilyPolicy,
    	}
    }
    
    // createVMConfig sets up a Service account,
    func createVMConfig(ctx resource.Context, cfg echo.Config) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +optional
    	ClusterIPs []string
    
    	// IPFamilies identifies all the IPFamilies assigned for this Service. If a value
    	// was not provided for IPFamilies it will be defaulted based on the cluster
    	// configuration and the value of service.spec.ipFamilyPolicy. A maximum of two
    	// values (dual-stack IPFamilies) are allowed in IPFamilies. IPFamilies field is
    	// conditionally mutable: it allows for adding or removing a secondary IPFamily,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/values.yaml

          loadBalancerSourceRanges: []
          serviceAnnotations: {}
    
          # Setup how istiod Service is configured. See https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
          ipFamilyPolicy: ""
          ipFamilies: []
    
          # To generate an internal load balancer:
          # --set serviceAnnotations.cloud.google.com/load-balancer-type=internal
          #serviceAnnotations:
          #    cloud.google.com/load-balancer-type: "internal"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. tests/integration/security/reachability_test.go

    							Version:     migrationVersionNonIstio,
    							Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    						},
    					},
    					IPFamilies:     "IPv4, IPv6",
    					IPFamilyPolicy: "RequireDualStack",
    				}).BuildOrFail(t)
    			}
    
    			// Add the migration app to the full list of services.
    			allServices := apps.Ns1.All.Append(migrationApp.Services())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-egress/values.yaml

          # Setup how istiod Service is configured. See https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
          ipFamilyPolicy: ""
          ipFamilies: []
    
          secretVolumes:
          - name: egressgateway-certs
            secretName: istio-egressgateway-certs
            mountPath: /etc/istio/egressgateway-certs
          - name: egressgateway-ca-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Valid list items are "IPv4", "IPv6".
      // More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
      repeated string ipFamilies = 29;
    
      // Controls whether Services are configured to use IPv4, IPv6, or both. Valid options
      // are PreferDualStack, RequireDualStack, and SingleStack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Valid list items are "IPv4", "IPv6".
    	// More info: https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
    	IpFamilies []string `protobuf:"bytes,29,rep,name=ipFamilies,proto3" json:"ipFamilies,omitempty"`
    	// Controls whether Services are configured to use IPv4, IPv6, or both. Valid options
    	// are PreferDualStack, RequireDualStack, and SingleStack.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        podLabels: {}
        # Setup how istiod Service is configured. See https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
        ipFamilyPolicy: ""
        ipFamilies: []
        # Ambient mode only.
        # Set this if you install ztunnel to a different namespace from `istiod`.
        # If set, `istiod` will allow connections from trusted node proxy ztunnels
        # in the provided namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/config.go

    	// the same pod.
    	IncludeExtAuthz bool
    
    	// IPFamily for the service. This is optional field. Mainly is used for dual stack testing
    	IPFamilies string
    
    	// IPFamilyPolicy. This is optional field. Mainly is used for dual stack testing.
    	IPFamilyPolicy string
    
    	DualStack bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    	// IPFamilyPolicyRequireDualStack on a single stack cluster will result in validation errors. The
    	// IPFamilies (and their order) assigned  to this service is based on service.spec.ipFamilies. If
    	// service.spec.ipFamilies was not provided then it will be assigned according to how they are
    	// configured on the cluster. If service.spec.ipFamilies has only one entry then the alternative
    	// IPFamily will be added by apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top