Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ingressGateways (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top