Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for injectionTemplates (0.39 sec)

  1. pkg/test/framework/components/echo/deployment/builder.go

    	next := b
    	next.clusters = clusters
    	return next
    }
    
    func (b *builder) Build() (out echo.Instances, err error) {
    	return build(b)
    }
    
    // injectionTemplates lists the set of templates for each Kube cluster
    func (b *builder) injectionTemplates() (map[string]sets.String, error) {
    	ns := "istio-system"
    	i, err := istio.Get(b.ctx)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

    {{- $gateway := index .Values "gateways" "istio-ingressgateway" }}
    {{- if eq $gateway.injectionTemplate "" }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- if eq $gateway.injectionTemplate "" }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/values.yaml

          # whether to run the gateway in a privileged container
          runAsRoot: false
    
          # The injection template to use for the gateway. If not set, no injection will be performed.
          injectionTemplate: ""
    
      # Revision is set as 'version' label and part of the resource names when installing multiple control planes.
      revision: ""
    
      # For Helm compatibility.
      ownerName: ""
    
      global:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top