Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Egresi (0.19 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // UKHomeOffice : https://www.gov.uk/government/organisations/home-office
    // Submitted by Jon Shanks <******@****.***>
    homeoffice.gov.uk
    
    // GlobeHosting, Inc.
    // Submitted by Zoltan Egresi <egresi@globehosting.com>
    ro.im
    
    // GoIP DNS Services : http://www.goip.de
    // Submitted by Christian Poulter <******@****.***>
    goip.de
    
    // Google, Inc.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  2. common-protos/k8s.io/api/networking/v1/generated.proto

      // +optional
      repeated NetworkPolicyEgressRule egress = 3;
    
      // policyTypes is a list of rule types that the NetworkPolicy relates to.
      // Valid options are ["Ingress"], ["Egress"], or ["Ingress", "Egress"].
      // If this field is not specified, it will default based on the existence of ingress or egress rules;
      // policies that contain an egress section are assumed to affect egress, and all policies
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  3. 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
    helm install -n istio-system istio-egress manifests/charts/gateways/istio-egress --set profile=openshift
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 16:01:31 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // +optional
      repeated NetworkPolicyEgressRule egress = 3;
    
      // List of rule types that the NetworkPolicy relates to.
      // Valid options are ["Ingress"], ["Egress"], or ["Ingress", "Egress"].
      // If this field is not specified, it will default based on the existence of Ingress or Egress rules;
      // policies that contain an Egress section are assumed to affect Egress, and all policies
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  5. manifests/charts/gateway/README.md

    ### Examples
    
    #### Egress Gateway
    
    Deploying a Gateway to be used as an [Egress Gateway](https://istio.io/latest/docs/tasks/traffic-management/egress/egress-gateway/):
    
    ```yaml
    service:
      # Egress gateways do not need an external LoadBalancer IP
      type: ClusterIP
    ```
    
    #### Multi-network/VM Gateway
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 19:38:07 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  6. Makefile.core.mk

    copy-templates:
    	rm manifests/charts/istiod-remote/templates/*
    	rm manifests/charts/gateways/istio-egress/templates/*
    
    	# gateway charts
    	cp -r manifests/charts/gateways/istio-ingress/templates/* manifests/charts/gateways/istio-egress/templates
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Apr 19 19:41:41 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/Chart.yaml

    apiVersion: v1
    name: istio-egress
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio gateways
    keywords:
      - istio
      - egressgateway
      - gateways
    sources:
      - https://github.com/istio/istio
    engine: gotpl
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 21 01:23:27 GMT 2023
    - 413 bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/values.yaml

            # Set this to "external" if and only if you want the egress gateway to
            # act as a transparent SNI gateway that routes mTLS/TLS traffic to
            # external services defined using service entries, where the service
            # entry has resolution set to DNS, has one or more endpoints with
            # network field set to "external". By default its set to "" so that
            # the egress gateway sees the same set of endpoints as the sidecars
    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)
  9. helm/minio/templates/ciliumnetworkpolicy.yaml

            protocol: TCP
        {{- if not .Values.networkPolicy.allowExternal }}
        fromEndpoints:
        - matchLabels:
            {{ template "minio.name" . }}-client: "true"
        {{- end }}
      egress:
      {{- range $entity := .Values.networkPolicy.egressEntities }}
      - toEntities:
        - {{ $entity }}
      {{- end }}
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 07:50:24 GMT 2024
    - 936 bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

          excludeInboundPorts: ""
          includeInboundPorts: "*"
          # istio egress capture allowlist
          # https://istio.io/docs/tasks/traffic-management/egress.html#calling-external-services-directly
          # example: includeIPRanges: "172.30.0.0/16,172.20.0.0/16"
          # would only capture egress traffic on those two IP Ranges, all other outbound traffic would
          # be allowed by the sidecar
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
Back to top