Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 218 for ingressGateways (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. manifests/profiles/openshift-ambient.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        cni:
          enabled: true
          namespace: kube-system
        ztunnel:
          enabled: true
          namespace: kube-system
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
      values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 19:32:44 UTC 2024
    - 314 bytes
    - Viewed (0)
  9. samples/bookinfo/demo-profile-no-gateways.yaml

    # IOP configuration used to install the demo profile without gateways.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: demo
      components:
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        egressGateways:
        - name: istio-egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 23 14:41:36 UTC 2022
    - 313 bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/input/gateways.yaml

    kind: IstioOperator
    spec:
      profile: empty
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            label:
              aaa: aaa-val
              bbb: bbb-val
              version: "21"
            k8s:
              resources:
                requests:
                  cpu: 111m
                  memory: 111Mi
          - name: user-ingressgateway
            enabled: true
            label:
              ccc: ccc-val
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top