Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for egressgateway (0.17 sec)

  1. architecture/environments/operator.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-operator
    spec:
      components:
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          namespace: istio-gateways
    ```
    
    the resulting namespaces will be:
    
    | Component | Namespace |
    | --------- | :-------- |
    ingressGateways | istio-gateways
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: Resource programmed, assigned to service(s) istio-ingressgateway.istio-system.svc.domain.suffix:80
        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/ingress_test.go

    				rev := ""
    				if t.Settings().Revisions.Default() != "" {
    					rev = t.Settings().Revisions.Default()
    				}
    				os.WriteFile(d, []byte(fmt.Sprintf(`
    revision: %v
    gateways:
      istio-ingressgateway:
        name: custom-gateway-helm
        injectionTemplate: gateway
        type: ClusterIP # LoadBalancer is slow and not necessary for this tests
        autoscaleMax: 1
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. tests/integration/security/sds_ingress/util/util.go

    `
    
    const gwTemplate = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: {{.CredentialName}}
    spec:
      selector:
        istio: {{.GatewayLabel | default "ingressgateway"}}
      servers:
      - port:
          number: 443
          name: https
          protocol: HTTPS
        tls:
          mode: {{.Mode}}
          credentialName: "{{.CredentialName}}"
        hosts:
        - "{{.Host}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. tests/integration/security/jwt_test.go

    					},
    				},
    			}))
    		})
    }
    
    // TestIngressRequestAuthentication tests beta authn policy for jwt on ingress.
    // The policy is also set at global namespace, with authorization on ingressgateway.
    func TestIngressRequestAuthentication(t *testing.T) {
    	framework.NewTest(t).
    		Label(label.IPv4). // https://github.com/istio/istio/issues/35835
    		Run(func(t framework.TestContext) {
    			config.New(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/ep_filters_test.go

    	//  - 0 gateways for network4
    	ds := environment(t)
    	origServices := ds.Env().Services()
    	origGateways := ds.Env().NetworkGateways()
    	ds.MemRegistry.AddService(&model.Service{
    		Hostname: "istio-ingressgateway.istio-system.svc.cluster.local",
    		Attributes: model.ServiceAttributes{
    			ClusterExternalAddresses: &model.AddressMap{
    				Addresses: map[cluster.ID][]string{
    					"cluster2a": {""},
    					"cluster2b": {""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy.go

    	if err != nil {
    		// Envoy logs errors again, so no need to log beyond debug level
    		log.Debugf("failed to create upstream grpc client: %v", err)
    		// Increase metric when xds connection error, for example: forgot to restart ingressgateway or sidecar after changing root CA.
    		metrics.IstiodConnectionErrors.Increment()
    		return err
    	}
    	log.Infof("connected to upstream XDS server: %s", p.istiodAddress)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top