Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for injectionTemplates (0.42 sec)

  1. operator/pkg/helmreconciler/testdata/iop-test-gw-1.yaml

        ingressGateways:
          - name: test-gw-1
            namespace: istio-system
            enabled: true
            label:
              istio: test-gw-1
      values:
        gateways:
          istio-ingressgateway:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 16:15:08 UTC 2022
    - 398 bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/testdata/iop-test-gw-2.yaml

        ingressGateways:
          - name: test-gw-2
            namespace: istio-system
            enabled: true
            label:
              istio: test-gw-2
      values:
        gateways:
          istio-ingressgateway:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 10 16:15:08 UTC 2022
    - 398 bytes
    - Viewed (0)
  3. tests/integration/iop-remote-integration-test-gateways.yaml

              resources:
                requests:
                  cpu: 10m
                  memory: 40Mi
      values:
        gateways:
          istio-ingressgateway:
            injectionTemplate: gateway
            autoscaleEnabled: false
          istio-egressgateway:
            injectionTemplate: gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 18:17:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

    {{- $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- if ne $gateway.injectionTemplate "" }}
    {{/* This provides a minimal gateway, ready to be injected.
         Any settings from values.gateways should be here - these are options specific to the gateway.
         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

    {{- $gateway := index .Values "gateways" "istio-ingressgateway" }}
    {{- if ne $gateway.injectionTemplate "" }}
    {{/* This provides a minimal gateway, ready to be injected.
         Any settings from values.gateways should be here - these are options specific to the gateway.
         Global settings, like the image, various env vars and volumes, etc will be injected.
         The normal Deployment is not suitable for this, as the original pod spec will override the injection template. */}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. samples/multicluster/gen-eastwest-gateway.sh

                    port: 15017
                    targetPort: 15017
    EOF
    )
    
    # Gateway injection template
    IOP=$(cat <<EOF
    $IOP
      values:
        gateways:
          istio-ingressgateway:
            injectionTemplate: gateway
    EOF
    )
    
    # additional multicluster/multinetwork meta
    if [[ "${SINGLE_CLUSTER}" -eq 0 ]]; then
      IOP=$(cat <<EOF
    $IOP
        global:
          network: ${NETWORK}
    EOF
    )
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top