Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for egressGateways (0.29 sec)

  1. 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)
  2. 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)
  3. tests/integration/security/file_mounted_certs/main_test.go

    	if cfg == nil {
    		return
    	}
    
    	cfg.ControlPlaneValues = `
    components:
      egressGateways:
      - enabled: true
        name: istio-egressgateway
        k8s:
          overlays:
            - kind: Deployment
              name: istio-egressgateway
              patches:
                - path: spec.template.spec.volumes[100]
                  value: |-
                    name: server-certs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/install.go

    			if c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, name.UserFacingComponentName(name.IngressComponentName))
    				break
    			}
    		}
    		for _, c := range iop.Spec.Components.EgressGateways {
    			if c.Enabled.GetValue() {
    				enabledComponents = append(enabledComponents, name.UserFacingComponentName(name.EgressComponentName))
    				break
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. operator/pkg/tpath/tree_test.go

    			value: "istio-egressgateway-certs",
    		},
    		{
    			path:  "values.gateways.istio-egressgateway.secretVolumes[0].mountPath",
    			value: "/etc/istio/egressgateway-certs",
    		},
    		{
    			path:  "values.gateways.istio-egressgateway.secretVolumes[1].name",
    			value: "egressgateway-ca-certs",
    		},
    		{
    			path:  "values.gateways.istio-egressgateway.secretVolumes[1].secretName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  6. operator/pkg/translate/translate.go

    		setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-egressgateway.name"), gwSpec.Name)
    		if len(gwSpec.Label) != 0 {
    			setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-egressgateway.labels"), gwSpec.Label)
    		}
    		if k8s != nil && k8s.Service != nil && k8s.Service.Ports != nil {
    			setYAMLNodeByMapPath(iopt, util.PathFromString("gateways.istio-egressgateway.ports"), k8s.Service.Ports)
    		}
    	}
    	return yaml.Marshal(iopt)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. tests/integration/telemetry/policy/helper_test.go

    kind: Gateway
    metadata:
      name: istio-egressgateway
    spec:
      selector:
        istio: egressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "some-external-site.com"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route-via-egressgateway
    spec:
      hosts:
        - "some-external-site.com"
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/values.yaml

          ipFamilyPolicy: ""
          ipFamilies: []
    
          secretVolumes:
          - name: egressgateway-certs
            secretName: istio-egressgateway-certs
            mountPath: /etc/istio/egressgateway-certs
          - name: egressgateway-ca-certs
            secretName: istio-egressgateway-ca-certs
            mountPath: /etc/istio/egressgateway-ca-certs
    
          configVolumes: []
          additionalContainers: []
    
          serviceAccount:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. operator/README.md

    --set values.gateways.istio-egressgateway.enabled=true \
    --set 'values.gateways.istio-egressgateway.secretVolumes[0].name'=egressgateway-certs \
    --set 'values.gateways.istio-egressgateway.secretVolumes[0].secretName'=istio-egressgateway-certs \
    --set 'values.gateways.istio-egressgateway.secretVolumes[0].mountPath'=/etc/istio/egressgateway-certs
    ```
    
    #### Install from file path
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    y","namespace":"istio-system"},"gateways":{"istio-egressgateway":{"autoscaleEnabled":true,"enabled":false,"namespace":"istio-system","ports":[{"name":"http2","port":80},{"name":"https","port":443},{"name":"tls","port":15443,"targetPort":15443}],"secretVolumes":[{"mountPath":"/etc/istio/egressgateway-certs","name":"egressgateway-certs","secretName":"istio-egressgateway-certs"},{"mountPath":"/etc/istio/egressgateway-ca-certs","name":"egressgateway-ca-certs","secretName":"istio-egressgateway-ca-cer...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top