Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for egressGateways (0.15 sec)

  1. tests/integration/telemetry/api/stats_test.go

    	ns := apps.Namespace
    	labels := map[string]string{
    		"request_protocol":               "tcp",
    		"destination_service_name":       "istio-egressgateway",
    		"destination_canonical_revision": "latest",
    		"destination_canonical_service":  "istio-egressgateway",
    		"destination_app":                "istio-egressgateway",
    		// Does not play well with canonical revision which defaults to "latest".
    		// "destination_version":            "unknown",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. tests/integration/ambient/untaint/main_test.go

          PILOT_ENABLE_NODE_UNTAINT_CONTROLLERS: "true"
      ztunnel:
        terminationGracePeriodSeconds: 5
        env:
          SECRET_TTL: 5m
    
      gateways:
        istio-ingressgateway:
          enabled: false
        istio-egressgateway:
          enabled: false
    
    `
    		}, cert.CreateCASecretAlt)).
    		Teardown(untaintNodes).
    		Run()
    }
    
    func taintNodes(t resource.Context) error {
    	nodeC := t.Clusters().Default().Kube().CoreV1().Nodes()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 14:58:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. istioctl/pkg/tag/revision.go

    	ControlPlanePods   []*PodFilteredInfo           `json:"control_plane_pods,omitempty"`
    	IngressGatewayPods []*PodFilteredInfo           `json:"ingess_gateways,omitempty"`
    	EgressGatewayPods  []*PodFilteredInfo           `json:"egress_gateways,omitempty"`
    	NamespaceSummary   map[string]*NsInfo           `json:"namespace_summary,omitempty"`
    }
    
    func ListRevisionDescriptions(client kube.CLIClient) (map[string]*RevisionDescription, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 13:16:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. istioctl/pkg/proxystatus/proxystatus.go

      istioctl proxy-status
    
      # Retrieve sync status for Envoys in a specific namespace
      istioctl proxy-status --namespace foo
    
      # Retrieve sync diff for a single Envoy and Istiod
      istioctl proxy-status istio-egressgateway-59585c5b9c-ndc59.istio-system
    
      # SECURITY OPTIONS
    
      # Retrieve proxy status information directly from the control plane, using token security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. istioctl/pkg/internaldebug/internal-debug.go

    `,
    		Example: `  # Retrieve sync status for all Envoys in a mesh
      istioctl x internal-debug syncz
    
      # Retrieve sync diff for a single Envoy and Istiod
      istioctl x internal-debug syncz istio-egressgateway-59585c5b9c-ndc59.istio-system
    
      # SECURITY OPTIONS
    
      # Retrieve syncz debug information directly from the control plane, using token security
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate_value.go

    	specialComponentPath = map[string]bool{
    		"gateways":                      true,
    		"gateways.istio-ingressgateway": true,
    		"gateways.istio-egressgateway":  true,
    	}
    
    	skipTranslate = map[name.ComponentName]bool{
    		name.IstioBaseComponentName:          true,
    		name.IstioOperatorComponentName:      true,
    		name.IstioOperatorCustomResourceName: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  7. operator/pkg/compare/compare_test.go

    kind: HorizontalPodAutoscaler
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
      labels:
        app: istio-egressgateway
        release: istio`,
    			want: `metadata:
      labels:
        app: istio-ingressgateway -> istio-egressgateway
    `,
    		},
    		{
    			desc: "one map value changed, order changed",
    			a: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    	}
    	if !values.GetGateways().GetIstioEgressgateway().GetRunAsRoot().GetValue() {
    		errs = util.AppendErrs(errs, validateGateways(spec.GetComponents().GetEgressGateways(), "istio-egressgateway"))
    	}
    	for _, raw := range values.GetGateways().GetIstioIngressgateway().GetIngressPorts() {
    		p := raw.AsMap()
    		var tp int
    		if p["targetPort"] != nil {
    			t, ok := p["targetPort"].(float64)
    			if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    		args.AppendSet("meshConfig.defaultConfig.proxyMetadata.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("values.gateways.istio-ingressgateway.ipFamilyPolicy", "RequireDualStack")
    		args.AppendSet("values.gateways.istio-egressgateway.ipFamilyPolicy", "RequireDualStack")
    	}
    
    	// Include all user-specified values.
    	for k, v := range cfg.Values {
    		args.AppendSet("values."+k, v)
    	}
    
    	for k, v := range cfg.OperatorOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Next available 31.
    }
    
    // Configuration for gateways.
    message GatewaysConfig {
      // Configuration for an egress gateway.
      EgressGatewayConfig istio_egressgateway = 1 [json_name = "istio-egressgateway"];
    
      // Controls whether any gateways are enabled.
      google.protobuf.BoolValue enabled = 2;
    
      // Configuration for an ingress gateway.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top