Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 279 for ingressGateways (0.21 sec)

  1. manifests/charts/gateways/istio-ingress/templates/autoscale.yaml

        operator.istio.io/component: "IngressGateways"
    spec:
      maxReplicas: {{ $gateway.autoscaleMax }}
      minReplicas: {{ $gateway.autoscaleMin }}
      scaleTargetRef:
        apiVersion: apps/v1
        kind: Deployment
        name: {{ $gateway.name }}
      metrics:
      - type: Resource
        resource:
          name: cpu
          target:
            type: Utilization
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 951 bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/poddisruptionbudget.yaml

        operator.istio.io/component: "IngressGateways"
    spec:
      minAvailable: 1
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | trim | indent 6 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 666 bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/ingressgateway_k8s_settings.golden.yaml

    kind: Deployment
    metadata:
      labels:
        app: istio-ingressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: ingressgateway
        istio.io/rev: default
        operator.istio.io/component: IngressGateways
        release: istio
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          app: istio-ingressgateway
          istio: ingressgateway
      strategy:
        rollingUpdate:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. tests/integration/iop-integration-test-defaults-with-quic.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      components:
        ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          k8s:
            service:
              ports:
              ## Default ports
              - port: 15021
                targetPort: 15021
                name: status-port
              - port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 718 bytes
    - Viewed (0)
  5. operator/pkg/validate/validate_test.go

    			yamlStr: `
    installPackagePath: /local/file/path
    `,
    		},
    		{
    			desc: "BadGatewayName",
    			yamlStr: `
    components:
      ingressGateways:
      - namespace: istio-ingress-ns2
        name: istio@ingress-1
        enabled: true
    `,
    			wantErrs: makeErrors([]string{`invalid value Components.IngressGateways: istio@ingress-1`}),
    		},
    		{
    			desc: "BadValuesIP",
    			yamlStr: `
    values:
      global:
        proxy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 11:44:31 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/profile-dump/output/config_path.yaml

    base:
      enabled: true
    cni:
      enabled: false
    egressGateways:
    - enabled: false
      name: istio-egressgateway
    ingressGateways:
    - enabled: true
      name: istio-ingressgateway
    pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 192 bytes
    - Viewed (0)
  7. manifests/profiles/ambient.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
        ztunnel:
          enabled: true
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 246 bytes
    - Viewed (0)
  8. manifests/profiles/minimal.yaml

    # The minimal profile will install just the core control plane
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        ingressGateways:
        - name: istio-ingressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 11 05:41:16 UTC 2020
    - 216 bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/input/deprecated_autoscaling_k8s_spec.yaml

                resource:
                  name: memory
                  targetAverageUtilization: 444
        ingressGateways:
        - namespace: istio-system
          name: istio-ingressgateway
          enabled: true
          k8s:
            hpaSpec:
              maxReplicas: 222
              scaleTargetRef:
                name: istio-ingressgateway
              metrics:
              - type: Resource
                object:
                  metricName: cpu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

    		},
    		{
    			name: "explicitly invalid target port",
    			values: `
    components:
      ingressGateways:
        - name: istio-ingressgateway
          enabled: true
        - name: cluster-local-gateway
          enabled: true
          k8s:
            service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top