Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 250 for Gateways (0.19 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/gateways.yaml

    Martin Ostrowski <******@****.***> 1594769070 -0700
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Jul 14 23:24:30 GMT 2020
    - 113 bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
    {{ $gateway.labels | toYaml | indent 8 }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
    {{ $gateway.labels | toYaml | indent 8 }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 5K bytes
    - Viewed (0)
  4. istioctl/pkg/waypoint/waypoint_test.go

    			args:            strings.Split("list", " "),
    			gateways:        []*gateway.Gateway{},
    			expectedOutFile: "no-gateway",
    		},
    		{
    			name: "default namespace gateway",
    			args: strings.Split("list", " "),
    			gateways: []*gateway.Gateway{
    				makeGateway(constants.DefaultNamespaceWaypoint, "default", true, true),
    				makeGateway(constants.DefaultNamespaceWaypoint, "fake", true, true),
    			},
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 04 15:53:09 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  5. manifests/charts/gateway/README.md

    If you install with `helm install istio-gateway istio/gateway`, resources will be named `istio-gateway` and the `selector` labels set to:
    
    ```yaml
    app: istio-gateway
    istio: gateway # the release name with leading istio- prefix stripped
    ```
    
    If your existing installation doesn't follow these names, you can override them. For example, if you have resources named `my-custom-gateway` with `selector` labels
    `foo=bar,istio=ingressgateway`:
    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. istioctl/pkg/waypoint/waypoint.go

    	makeGateway := func(forApply bool) (*gateway.Gateway, error) {
    		ns := ctx.NamespaceOrDefault(ctx.Namespace())
    		if ctx.Namespace() == "" && !forApply {
    			ns = ""
    		}
    		// If a user sets the waypoint name to an empty string, set it to the default namespace waypoint name.
    		if waypointName == "" {
    			waypointName = constants.DefaultNamespaceWaypoint
    		}
    		gw := gateway.Gateway{
    			TypeMeta: metav1.TypeMeta{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:40 GMT 2024
    - 15K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-ingress/files/profile-demo.yaml

      traceSampling: 100
      resources:
        requests:
          cpu: 10m
          memory: 100Mi
    
    gateways:
      istio-egressgateway:
        autoscaleEnabled: false
        resources:
          requests:
            cpu: 10m
            memory: 40Mi
      istio-ingressgateway:
        autoscaleEnabled: false
        ports:
        ## You can add custom gateway ports in user values overrides, but it must include those ports since helm replaces.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 22:30:06 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  8. manifests/charts/install-OpenShift.md

     helm install -n istio-system istiod manifests/charts/istio-control/istio-discovery --set profile=openshift
    ```
    
    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.
    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)
  9. manifests/charts/gateways/istio-egress/NOTES.txt

    namespace.
    
    All ingress gateway have a "app:ingressgateway" label, used to identify it as an
    ingress, and an "istio: ingressgateway$SUFFIX" label of Gateway selection.
    
    The Gateways use "istio: ingressgateway$SUFFIX" selectors.
    
    
    # Multiple gateway versions
    
    
    
    # Using different pilot versions
    
    
    
    # Migration from istio-system
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 15 21:29:06 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  10. manifests/charts/gateway/Chart.yaml

    apiVersion: v2
    name: gateway
    description: Helm chart for deploying Istio gateways
    type: application
    
    # 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
    
    sources:
    - https://github.com/istio/istio
    icon: https://istio.io/latest/favicons/android-192x192.png
    keywords:
    - istio
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 21 01:23:27 GMT 2023
    - 389 bytes
    - Viewed (0)
Back to top