Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for egressgateway (0.18 sec)

  1. operator/cmd/mesh/manifest-generate_test.go

    		"app":   "istio-ingressgateway",
    		"istio": "ingressgateway",
    	}
    	egress15Selector := map[string]string{
    		"app":   "istio-egressgateway",
    		"istio": "egressgateway",
    	}
    
    	// Validate references within the same deployment
    	validateReferentialIntegrity(t, objs, "istiod", istiod15Selector)
    	validateReferentialIntegrity(t, objs, "istio-ingressgateway", ingress15Selector)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  2. tests/integration/security/egress_gateway_origination_test.go

    `
    	vs := `
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: route-via-egressgateway-sds
    spec:
      hosts:
        - {{ .to.Config.ClusterLocalFQDN }}
      gateways:
        - istio-egressgateway-sds
        - mesh
      http:
        - match:
            - gateways:
                - mesh # from sidecars, route to egress gateway service
              port: 80
          route:
            - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K 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. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- $gateway := index .Values "gateways" "istio-egressgateway" }}
    {{- if eq $gateway.injectionTemplate "" }}
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: {{ $gateway.name }}
      namespace: {{ .Release.Namespace }}
      labels:
    {{ $gateway.labels | toYaml | indent 4 }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. tests/integration/telemetry/api/stats_test.go

    	ns := apps.Namespace
    	labels := map[string]string{
    		"request_protocol":               "tcp",
    		"destination_service_name":       "istio-egressgateway",
    		"destination_canonical_revision": "latest",
    		"destination_canonical_service":  "istio-egressgateway",
    		"destination_app":                "istio-egressgateway",
    		// Does not play well with canonical revision which defaults to "latest".
    		// "destination_version":            "unknown",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. 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)
  8. operator/pkg/translate/translate_value.go

    	// specialComponentPath lists cases of component path of values.yaml we need to have special treatment.
    	specialComponentPath = map[string]bool{
    		"gateways":                      true,
    		"gateways.istio-ingressgateway": true,
    		"gateways.istio-egressgateway":  true,
    	}
    
    	skipTranslate = map[name.ComponentName]bool{
    		name.IstioBaseComponentName:          true,
    		name.IstioOperatorComponentName:      true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. operator/pkg/compare/compare_test.go

    kind: HorizontalPodAutoscaler
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
      labels:
        app: istio-ingressgateway
        release: istio`,
    			b: `apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      name: istio-ingressgateway
      namespace: istio-system
      labels:
        app: istio-egressgateway
        release: istio`,
    			want: `metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 33K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		errs = util.AppendErrs(errs, validateGateways(spec.GetComponents().GetIngressGateways(), "istio-ingressgateway"))
    	}
    	if !values.GetGateways().GetIstioEgressgateway().GetRunAsRoot().GetValue() {
    		errs = util.AppendErrs(errs, validateGateways(spec.GetComponents().GetEgressGateways(), "istio-egressgateway"))
    	}
    	for _, raw := range values.GetGateways().GetIstioIngressgateway().GetIngressPorts() {
    		p := raw.AsMap()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top