Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for ingressGateways (0.2 sec)

  1. operator/cmd/mesh/testdata/profile-dump/output/all_off.txt

    components.base.enabled=true
    components.cni.enabled=false
    components.egressGateways[0].enabled=false
    components.egressGateways[0].name="istio-egressgateway"
    components.ingressGateways[0].enabled=true
    components.ingressGateways[0].name="istio-ingressgateway"
    components.pilot.enabled=false
    hub="gcr.io/istio-testing"
    profile="default"
    tag="latest"
    values.defaultRevision=""
    values.global.configValidation=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 453 bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/profile-dump/output/config_path.txt

    base.enabled=true
    cni.enabled=false
    egressGateways[0].enabled=false
    egressGateways[0].name="istio-egressgateway"
    ingressGateways[0].enabled=true
    ingressGateways[0].name="istio-ingressgateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 212 bytes
    - Viewed (0)
  3. operator/samples/ingress-gateway-only.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      components:
        ingressGateways:
          - enabled: true
            namespace: my-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 03:45:46 UTC 2024
    - 205 bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_test.go

    	const valuesWithHPAndReplicaCountFormat = `
    values:
      pilot:
        autoscaleEnabled: %t
      gateways:
        istio-ingressgateway:
          autoscaleEnabled: %t
        istio-egressgateway:
          autoscaleEnabled: %t
    components:
      pilot:
        k8s:
          replicaCount: 2
      ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          k8s:
            replicaCount: 2
      egressGateways:
        - name: istio-egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/profile-dump/output/all_off.yaml

        egressGateways:
        - enabled: false
          name: istio-egressgateway
        ingressGateways:
        - enabled: true
          name: istio-ingressgateway
        pilot:
          enabled: false
      hub: gcr.io/istio-testing
    
      profile: default
      tag: latest
      values:
        defaultRevision: ""
        gateways:
          istio-egressgateway: {}
          istio-ingressgateway: {}
        global:
          configValidation: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 565 bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/serviceaccount.yaml

        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
      {{- with $gateway.serviceAccount.annotations }}
      annotations:
        {{- toYaml . | nindent 4 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 752 bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/input/autoscaling_v2beta1_k8s_and_values.yaml

    kind: IstioOperator
    spec:
      components:
        ingressGateways:
        - enabled: true
          k8s:
            hpaSpec:
              metrics:
              - resource:
                  name: cpu
                  targetAverageUtilization: 70
                type: Resource
              - resource:
                  name: memory
                  targetAverageUtilization: 70
                type: Resource
          name: istio-ingressgateway
      values:
        pilot:
          cpu:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 553 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top