Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for families (0.15 sec)

  1. manifests/charts/base/values.yaml

        # Setup how istiod Service is configured. See https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
        # This is intended only for use with external istiod.
        ipFamilyPolicy: ""
        ipFamilies: []
    
      base:
        # Used for helm2 to add the CRDs to templates.
        enableCRDTemplates: false
    
        # Validation webhook configuration url
        # For example: https://$remotePilotAddress:15017/validate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo-ratings-dualstack.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: ratings
      labels:
        app: ratings
        service: ratings
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies: [IPv6, IPv4]
      ports:
      - port: 9080
        name: http
      selector:
        app: ratings
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ratings-v1
      labels:
        app: ratings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/registry/core/service/strategy_test.go

    				t.Errorf("expected clusterIPs %q, got %q", tc.expect.Spec.ClusterIP, result.Spec.ClusterIP)
    			}
    			if !reflect.DeepEqual(result.Spec.IPFamilies, tc.expect.Spec.IPFamilies) {
    				t.Errorf("expected ipFamilies %q, got %q", tc.expect.Spec.IPFamilies, result.Spec.IPFamilies)
    			}
    			if !reflect.DeepEqual(result.Spec.IPFamilyPolicy, tc.expect.Spec.IPFamilyPolicy) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			intrinsics[intrinsicKey{a, pkg, fn}] = b
    		}
    	}
    	// addF does the same as add but operates on architecture families.
    	addF := func(pkg, fn string, b intrinsicBuilder, archFamilies ...sys.ArchFamily) {
    		m := 0
    		for _, f := range archFamilies {
    			if f >= 32 {
    				panic("too many architecture families")
    			}
    			m |= 1 << uint(f)
    		}
    		for _, a := range all {
    			if m>>uint(a.Family)&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo-details-dualstack.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies: [IPv6, IPv4]
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: details-v1
      labels:
        app: details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Service.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Service.yaml

      externalIPs:
      - externalIPsValue
      externalName: externalNameValue
      externalTrafficPolicy: externalTrafficPolicyValue
      healthCheckNodePort: 12
      internalTrafficPolicy: internalTrafficPolicyValue
      ipFamilies:
      - ipFamiliesValue
      ipFamilyPolicy: ipFamilyPolicyValue
      loadBalancerClass: loadBalancerClassValue
      loadBalancerIP: loadBalancerIPValue
      loadBalancerSourceRanges:
      - loadBalancerSourceRangesValue
      ports:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - The `--bind-address` parameter in kube-proxy is misleading, no port is opened with this address. Instead it is translated internally to "nodeIP". The nodeIPs for both families are now taken from the Node object if `--bind-address` is unspecified or set to the "any" address (0.0.0.0 or ::). It is recommended to leave `--bind-address` unspecified, and in particular avoid to set it to localhost (127.0.0.1 or ::1) ([#1195...
    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. samples/tcp-echo/tcp-echo-ipv4.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: tcp-echo
      labels:
        app: tcp-echo
        service: tcp-echo
    spec:
      ipFamilyPolicy: SingleStack
      ipFamilies:
      - IPv4
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/common/deployment/external.go

    		},
    		Subsets: []echo.SubsetConfig{
    			{
    				Version:     "v1",
    				Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    			},
    		},
    	}
    	if t.Settings().EnableDualStack {
    		config.IPFamilies = "IPv6, IPv4"
    		config.IPFamilyPolicy = "RequireDualStack"
    	}
    	return b.WithConfig(config)
    }
    
    func (e *External) LoadValues(echos echo.Instances) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top