Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ingressGateways (0.58 sec)

  1. 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)
  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. 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)
  4. tests/integration/telemetry/api/dashboard_test.go

    		}
    	}
    	return nil
    }
    
    const gatewayConfig = `
    apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
      name: echo-gateway
    spec:
      selector:
        istio: ingressgateway
      servers:
      - port:
          number: 80
          name: http
          protocol: HTTP
        hosts:
        - "*"
      - port:
          number: 31400
          name: tcp
          protocol: TCP
        hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/ingress_test.go

    				rev := ""
    				if t.Settings().Revisions.Default() != "" {
    					rev = t.Settings().Revisions.Default()
    				}
    				os.WriteFile(d, []byte(fmt.Sprintf(`
    revision: %v
    gateways:
      istio-ingressgateway:
        name: custom-gateway-helm
        injectionTemplate: gateway
        type: ClusterIP # LoadBalancer is slow and not necessary for this tests
        autoscaleMax: 1
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/kube.go

    	if ctx.Settings().EnableDualStack {
    		args.AppendSet("values.pilot.env.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("meshConfig.defaultConfig.proxyMetadata.ISTIO_DUAL_STACK", "true")
    		args.AppendSet("values.gateways.istio-ingressgateway.ipFamilyPolicy", "RequireDualStack")
    		args.AppendSet("values.gateways.istio-egressgateway.ipFamilyPolicy", "RequireDualStack")
    	}
    
    	// Include all user-specified values.
    	for k, v := range cfg.Values {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top