Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for egress (0.55 sec)

  1. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

        - match:
            - gateways:
                - test-egress
              port: 80
          route:
            - destination:
                host: "{{ .To.ClusterLocalFQDN }}"
                port:
                  number: {{ (.To.PortForName "http").ServicePort }}
              weight: 100
          headers:
            request:
              add:
                x-egress-test: "handled-by-egress-gateway"
    ---
    apiVersion: networking.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. releasenotes/notes/credential-name-support-egress-sidecar.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
       - |
         **Added** the ability to set credentialName based secret configuration
         at sidecars for egress TLS traffic when WorkloadSelector is specified in `DestinationRule`,
         provided the sidecar has permission to list secrets in the namespace where it resides.
    docs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:56:05 UTC 2022
    - 435 bytes
    - Viewed (0)
  3. samples/bookinfo/networking/egress-rule-google-apis.yaml

    Vadim Eisenberg <******@****.***> 1558544845 +0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 17:07:25 UTC 2019
    - 885 bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml

    apiVersion: networking.istio.io/v1beta1
    kind: ServiceEntry
    metadata:
      name: egress
    spec:
      hosts:
      - "google.com"
      - "*.egress.com"
      ports:
      - number: 80
        name: http
        protocol: HTTP
      - number: 443
        name: tls
        protocol: TLS
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: egress
      namespace: default
    spec:
      parentRefs:
      - kind: ServiceEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-to-nonexistent
      namespace: default
    spec:
      workloadSelector:
        labels:
          app: bogus # This doesn't exist, and should generate an error
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml.golden

    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: HTTPRoute/egress.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: egress-1-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - '*.egress.com'
      http:
      - name: default.egress.0
        route:
        - destination:
            host: google.com
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/registry/networking/networkpolicy/strategy_test.go

    		},
    	}
    
    	ingress.Ports = ports
    	egress.Ports = ports
    
    	if hasEndPort {
    		ingress.Ports[0].EndPort = &endPort
    		egress.Ports[0].EndPort = &endPort
    	}
    
    	if isIngress {
    		netPol.Spec.Ingress = append(netPol.Spec.Ingress, ingress)
    	}
    
    	if isEgress {
    		netPol.Spec.Egress = append(netPol.Spec.Egress, egress)
    	}
    
    	return netPol
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/egress_selector.go

    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ConfigFile, "egress-selector-config-file", o.ConfigFile,
    		"File with apiserver egress selector configuration.")
    }
    
    // ApplyTo adds the egress selector settings to the server configuration.
    // In case egress selector settings were not provided by a cluster-admin
    // they will be prepared from the recommended/default/no-op values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 11:41:59 UTC 2021
    - 3K bytes
    - Viewed (0)
  9. manifests/charts/install-OpenShift.md

    4) `gateways` charts install a load balancer with `ingress` and `egress`.
    
    Ingress secrets and access should be separated from the control plane.
    
    ```console
    helm install -n istio-system istio-ingress manifests/charts/gateways/istio-ingress --set profile=openshift
    ```
    
    Egress secrets and access should be separated from the control plane.
    
    ```console
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:01:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      namespace: ns1
    spec:
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: has-selector
      namespace: ns1
    spec:
      workloadSelector: # Since this has a workload selector, it shouldn't conflict with the other Sidecar in the namespace
        labels:
          app: foo
      egress:
      - hosts:
        - "./*"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top