Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Stack (0.18 sec)

  1. .github/ISSUE_TEMPLATE/feature_request.md

    **Describe the feature request**
    
    **Describe alternatives you've considered**
    
    **Affected product area (please put an X in all that apply)**
    
    [ ] Ambient
    [ ] Docs
    [ ] Dual Stack
    [ ] Installation
    [ ] Networking
    [ ] Performance and Scalability
    [ ] Extensions and Telemetry
    [ ] Security
    [ ] Test and Release
    [ ] User Experience
    [ ] Developer Infrastructure
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Feb 12 19:42:48 GMT 2024
    - 707 bytes
    - Viewed (0)
  2. manifests/charts/base/values.yaml

        # treatment will be considered.
        platform: ""
    
        # 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
    
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 22:00:40 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin_test.go

    	pod, ns := buildFakePodAndNSForClient()
    	pod.ObjectMeta.Annotations[sidecarStatusKey] = "true"
    	pod.Spec.Containers = []corev1.Container{
    		{
    			Name: "istio-proxy",
    			Env:  []corev1.EnvVar{{Name: "ISTIO_DUAL_STACK", Value: "true"}},
    		}, {Name: "mockContainer"},
    	}
    
    	mockIntercept := testDoAddRun(t, buildMockConf(true, ""), testNSName, pod, ns)
    
    	if len(mockIntercept.lastRedirect) == 0 {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // to SingleStack. Services can be "SingleStack" (a single IP family),
      // "PreferDualStack" (two IP families on dual-stack configured clusters or
      // a single IP family on single-stack clusters), or "RequireDualStack"
      // (two IP families on dual-stack configured clusters, otherwise fail). The
      // ipFamilies and clusterIPs fields depend on the value of this field. This
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  5. istioctl/pkg/admin/istiodconfig_test.go

    	switch request.Method {
    	case http.MethodGet:
    		_, _ = writer.Write([]byte(getResponse))
    	}
    }
    
    func adsHandler(writer http.ResponseWriter, request *http.Request) {
    	const getResponse = `{"name":"ads","description":"ads debugging","output_level":"info","stack_trace_level":"none","log_callers":false}`
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/bug_report.yml

      - type: checkboxes
        id: area
        attributes:
          label: Affected product area
          options:
          - label: "Ambient"
          - label: "Docs"
          - label: "Dual Stack"
          - label: "Installation"
          - label: "Networking"
          - label: "Performance and Scalability"
          - label: "Extensions and Telemetry"
          - label: "Security"
          - label: "Test and Release"
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 15:17:29 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  7. istioctl/cmd/options_test.go

          --log_stacktrace_level: Comma-separated minimum per-scope logging level at which stack traces are captured, in the form of <scope>:<level>,<scope:level>,... where scope can be one of \[.*\] and level can be one of \[.*\]
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Sep 14 02:38:54 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  8. cni/pkg/plugin/sidecar_redirect.go

    			log.Warnf("cannot parse DNS capture environment variable %v", valErr)
    		}
    	}
    	if v, found := pi.ProxyEnvironments["ISTIO_DUAL_STACK"]; found {
    		// parse and set the bool value of dnsRedirect
    		redir.dualStack, valErr = strconv.ParseBool(v)
    		if valErr != nil {
    			log.Warnf("cannot parse dual stack environment variable %v", valErr)
    		}
    	}
    	if v, found := pi.ProxyEnvironments[cmd.InvalidDropByIptables]; found {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 20:34:28 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/values.yaml

          podAnnotations: {}
          type: ClusterIP # change to NodePort or LoadBalancer if need be
    
          # 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
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/values.yaml

          loadBalancerIP: ""
          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:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top