Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for ingressGateways (0.43 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/config/validation/agent/validation_test.go

    							},
    						},
    						Gateways: []*meshconfig.Network_IstioNetworkGateway{
    							{
    								Gw: &meshconfig.Network_IstioNetworkGateway_RegistryServiceName{
    									RegistryServiceName: "istio-ingressgateway.istio-system.svc.cluster.local",
    								},
    								Port: 80,
    							},
    						},
    					},
    					"n2": {
    						Endpoints: []*meshconfig.Network_NetworkEndpoints{
    							{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. 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)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

        #     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
        #       port: 443
        #
        meshNetworks: {}
    
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. manifests/charts/istiod-remote/values.yaml

        #     gateways:
        #     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
        #       port: 443
        #
        meshNetworks: {}
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
        multiCluster:
          # Set to true to connect two kubernetes clusters via their respective
          # ingressgateway services when pods in each cluster cannot directly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. pkg/config/constants/constants.go

    	IstioLabel = "istio"
    
    	// IstioIngressLabelValue is value for IstioLabel that identifies an ingress workload.
    	// TODO we should derive this from IngressClass
    	IstioIngressLabelValue = "ingressgateway"
    
    	// IstioSystemNamespace is the namespace where Istio's components are deployed
    	IstioSystemNamespace = "istio-system"
    
    	// DefaultAuthenticationPolicyName is the name of the cluster-scoped authentication policy. Only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top