Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for egressGateways (0.18 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/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)
  9. operator/pkg/translate/translate_common.go

    			if c != nil && c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, string(name.IngressComponentName))
    				break
    			}
    		}
    		for _, c := range iopSpec.Components.EgressGateways {
    			if c != nil && c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, string(name.EgressComponentName))
    				break
    			}
    		}
    	}
    
    	return enabledComponents, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. operator/pkg/controlplane/control_plane.go

    			o.Namespace = defaultIfEmpty(c.Namespace, iop.Namespace(installSpec))
    			out.components = append(out.components, component.NewIngressComponent(c.Name, idx, c, &o))
    		}
    		for idx, c := range installSpec.Components.EgressGateways {
    			o := *opts
    			o.Namespace = defaultIfEmpty(c.Namespace, iop.Namespace(installSpec))
    			out.components = append(out.components, component.NewEgressComponent(c.Name, idx, c, &o))
    		}
    	}
    	return out, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 23 02:26:59 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top