Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for egressgateway (0.12 sec)

  1. 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)
  2. operator/pkg/translate/translate_value.go

    	// specialComponentPath lists cases of component path of values.yaml we need to have special treatment.
    	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,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		errs = util.AppendErrs(errs, validateGateways(spec.GetComponents().GetIngressGateways(), "istio-ingressgateway"))
    	}
    	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()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    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 secretName: istio-egressgateway-ca-certs mountPath: /etc/istio/egressgateway-ca-certs configVolumes: [] additionalContainers: [] serviceAccount: # Annotations to add to the service account annotations: {} ### Advanced options...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. 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)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 674 bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-translation.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 80
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 672 bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    # Gateway with non-standard IngressGateway
    #
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: httpbin-gateway
    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // 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.
      IngressGatewayConfig istio_ingressgateway = 4 [json_name = "istio-ingressgateway"];
    
      google.protobuf.Value securityContext = 10;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	// Destination rules are defined here for global purposes. We do not want these
    	// catch all destination rules to be the only dest rule, when processing CDS for
    	// proxies like the istio-ingressgateway or istio-egressgateway.
    	// If there are no service specific dest rules, we will end up picking up the same
    	// rules anyway, later in the code
    
    	// 1. select destination rule from proxy config namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top