Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 95 for egressGateways (0.19 sec)

  1. 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)
  2. operator/pkg/name/name_test.go

    		name string
    		cn   ComponentName
    		want bool
    	}{
    		{
    			name: "ComponentName is IngressGateways",
    			cn:   IngressComponentName,
    			want: true,
    		},
    		{
    			name: "ComponentName is EgressGateways",
    			cn:   EgressComponentName,
    			want: true,
    		},
    		{
    			name: "ComponentName is others",
    			cn:   CNIComponentName,
    			want: false,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 05 14:08:11 UTC 2023
    - 7.7K 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/pkg/validate/validate.go

    		"Hub":                        validateHub,
    		"Tag":                        validateTag,
    		"Revision":                   validateRevision,
    		"Components.IngressGateways": validateGatewayName,
    		"Components.EgressGateways":  validateGatewayName,
    	}
    	// requiredValues lists all the values that must be non-empty.
    	requiredValues = map[string]bool{}
    )
    
    // CheckIstioOperator validates the operator CR.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 12 16:04:15 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

    metadata:
      labels:
        app: istio-egressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: egressgateway
        istio.io/rev: default
        operator.istio.io/component: EgressGateways
        release: istio
      name: istio-egressgateway
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          app: istio-egressgateway
          istio: egressgateway
      strategy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    configured. See https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services 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: # Annotations to add to the service account annotations: {} ### Advanced options...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/tunneling/gateway/tcp/virtual-service.tmpl.yaml

      gateways:
      - mesh
      tcp:
      - match:
        - port: {{ .externalSvcTcpPort }}
        route:
        - destination:
            host: {{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default "istio-system" }}.svc.cluster.local
            port:
              number: 80
      tls:
      - match:
        - port: {{ .externalSvcTlsPort }}
          sniHosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 17:19:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. tests/integration/telemetry/testdata/istio-mtls-gateway.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: istio-egressgateway
    spec:
      selector:
        istio: egressgateway
      servers:
      - port:
          number: 443
          name: mtls-tcp
          protocol: TLS
        hosts:
        - fake.external.com
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 285 bytes
    - Viewed (0)
  10. tests/integration/telemetry/testdata/istio-mtls-dest-rule.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: egressgateway-for-external-app
    spec:
      host: istio-egressgateway.istio-system.svc.cluster.local
      trafficPolicy:
        portLevelSettings:
        - port:
            number: 443
          tls:
            mode: ISTIO_MUTUAL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 16:30:22 UTC 2022
    - 318 bytes
    - Viewed (0)
Back to top