Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for ingressGateways (0.17 sec)

  1. pkg/test/framework/components/istio/config.go

    	EastWestGatewayValues string
    
    	// IngressGatewayServiceName is the service name to use to reference the ingressgateway
    	// This field should only be set when DeployIstio is false
    	IngressGatewayServiceName string
    
    	// IngressGatewayServiceNamespace allows overriding the namespace of the ingressgateway service (defaults to SystemNamespace)
    	// This field should only be set when DeployIstio is false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    		return labels.Instance{constants.IstioLabel: ingressSelector}
    	} else if ingressService != "istio-ingressgateway" && ingressService != "" {
    		// Otherwise, we will use the ingress service as the default. It is common for the selector and service
    		// to be the same, so this removes the need for two configurations
    		// However, if its istio-ingressgateway we need to use the old values for backwards compatibility
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. operator/pkg/object/objects_test.go

    	hashTests := []struct {
    		desc      string
    		kind      string
    		namespace string
    		name      string
    		want      string
    	}{
    		{"CalculateHashForObjectWithNormalCharacter", "Service", "default", "ingressgateway", "Service:default:ingressgateway"},
    		{"CalculateHashForObjectWithDash", "Deployment", "istio-system", "istio-pilot", "Deployment:istio-system:istio-pilot"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate.go

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

    `).
    		YAML("", fmt.Sprintf(`
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: custom-istio
      listeners:
      - name: http
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/controller.go

    // DEFAULT allows Ingress without explicit class.
    
    // In 1.1:
    // - K8S_INGRESS_NS - namespace of the Gateway that will act as ingress.
    // - labels of the gateway set to "app=ingressgateway" for node_port, service set to 'ingressgateway' (matching default install)
    //   If we need more flexibility - we can add it (but likely we'll deprecate ingress support first)
    // -
    
    var schemas = collection.SchemasFor(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/gateway-custom-ingressgateway.yaml"},
    		analyzer:   &gateway.IngressGatewayPortAnalyzer{},
    		expected:   []message{
    			// no messages, this test case verifies no false positives
    		},
    	},
    	{
    		name:       "gatewayCustomIngressGatewayBadPort",
    		inputFiles: []string{"testdata/gateway-custom-ingressgateway-badport.yaml"},
    		analyzer:   &gateway.IngressGatewayPortAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    var services = []*model.Service{
    	{
    		Attributes: model.ServiceAttributes{
    			Name:      "istio-ingressgateway",
    			Namespace: "istio-system",
    			ClusterExternalAddresses: &model.AddressMap{
    				Addresses: map[cluster.ID][]string{
    					constants.DefaultClusterName: {"1.2.3.4"},
    				},
    			},
    		},
    		Ports:    ports,
    		Hostname: "istio-ingressgateway.istio-system.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/istioctl_test.go

    			})
    		})
    }
    
    func TestAuthZCheck(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			istioLabel := "ingressgateway"
    			if labelOverride := i.Settings().IngressGatewayIstioLabel; labelOverride != "" {
    				istioLabel = labelOverride
    			}
    			t.ConfigIstio().File(apps.Namespace.Name(), "testdata/authz-a.yaml").ApplyOrFail(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. tests/integration/helm/util.go

      variant: %q
    profile: ambient
    `
    	sampleEnvoyFilter = `
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: sample
    spec:
      workloadSelector:
        labels:
          istio: ingressgateway
      configPatches:
      - applyTo: NETWORK_FILTER # http connection manager is a filter in Envoy
        match:
          context: GATEWAY
          listener:
            filterChain:
              sni: app.example.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top