Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 102 for egressGateways (0.32 sec)

  1. tests/integration/iop-integration-test-defaults.yaml

                    targetPort: 15017
                    name: tls-webhook
                  - port: 31400
                    targetPort: 31400
                    name: tcp
        # Enable the egressgateway for all tests by default.
        egressGateways:
          - name: istio-egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 23:20:19 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/autoscale.yaml

        operator.istio.io/component: "EgressGateways"
    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
    - 949 bytes
    - Viewed (0)
  3. tests/integration/security/filebased_tls_origination/main_test.go

    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = tmpl.MustEvaluate(`
    {{- if not .isExternalControlPlane }}
    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
    values:
       gateways:
          istio-egressgateway:
             secretVolumes:
             - name: client-custom-certs
               secretName: egress-gw-cacerts
               mountPath: /etc/certs/custom
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. tests/integration/iop-remote-integration-test-gateways.yaml

                    targetPort: 15017
                    name: tls-webhook
                  - port: 31400
                    targetPort: 31400
                    name: tcp
        # Enable the egressgateway for all tests by default.
        egressGateways:
          - name: istio-egressgateway
            enabled: true
            k8s:
              resources:
                requests:
                  cpu: 10m
                  memory: 40Mi
      values:
        gateways:
    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. operator/pkg/apis/istio/v1alpha1/types.go

    //	  profile: default
    //	  hub: gcr.io/istio-testing
    //	  tag: latest
    //	  revision: 1-8-0
    //	  meshConfig:
    //	    accessLogFile: /dev/stdout
    //	    enableTracing: true
    //	  components:
    //	    egressGateways:
    //	    - name: istio-egressgateway
    //	      enabled: true
    //
    // +kubetype-gen
    // +kubetype-gen:groupVersion=install.istio.io/v1alpha1
    // +k8s:deepcopy-gen=true
    type IstioOperator struct {
    	metav1.TypeMeta `json:",inline"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 15 10:49:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

      gateways:
        istio-ingressgateway:
          autoscaleEnabled: true
        istio-egressgateway:
          autoscaleEnabled: true
    components:
      pilot:
        k8s:
          replicaCount: 2
      ingressGateways:
        - name: istio-ingressgateway
          enabled: true
          k8s:
            replicaCount: 2
      egressGateways:
        - name: istio-egressgateway
          enabled: true
          k8s:
            replicaCount: 2
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. operator/pkg/name/name.go

    		"spec.values.gateways.istio-ingressgateway.enabled": "spec.components.ingressGateways.[name:istio-ingressgateway].enabled",
    		"spec.values.gateways.istio-egressgateway.enabled":  "spec.components.egressGateways.[name:istio-egressgateway].enabled",
    	}
    
    	// userFacingComponentNames are the names of components that are displayed to the user in high level CLIs
    	// (like progress log).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. operator/pkg/util/merge_iop.go

    	IstiodRemote    *componentSpec     `json:"istiodRemote" patchStrategy:"merge"`
    	IngressGateways []*gatewaySpec     `json:"ingressGateways" patchStrategy:"merge" patchMergeKey:"name"`
    	EgressGateways  []*gatewaySpec     `json:"egressGateways" patchStrategy:"merge" patchMergeKey:"name"`
    }
    
    type baseComponentSpec struct {
    	K8S *v1alpha1.KubernetesResourcesSpec `json:"k8s" patchStrategy:"merge"`
    }
    
    type componentSpec struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/deployment.yaml

        operator.istio.io/component: "EgressGateways"
    spec:
    {{- if not $gateway.autoscaleEnabled }}
    {{- if $gateway.replicaCount }}
      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
    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. operator/pkg/translate/translate_test.go

      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
          enabled: true
          k8s:
            replicaCount: 2
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top