Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ConflictingGateways (0.31 sec)

  1. tests/integration/pilot/analyze_test.go

    						foundCount++
    					}
    					// There are 2 conflictings can be detected, A to B and B to A
    					if strings.Contains(line, msg.ConflictingGateways.Code()) {
    						g.Expect(line).To(ContainSubstring(msg.ConflictingGateways.Code()))
    						foundCount++
    					}
    				}
    				if strings.Contains(line, ns2.Name()) {
    					if strings.Contains(line, msg.ReferencedResourceNotFound.Code()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	InvalidApplicationUID = diag.NewMessageType(diag.Warning, "IST0144", "User ID (UID) 1337 is reserved for the sidecar proxy.")
    
    	// ConflictingGateways defines a diag.MessageType for message "ConflictingGateways".
    	// Description: Gateway should not have the same selector, port and matched hosts of server
    	ConflictingGateways = diag.NewMessageType(diag.Error, "IST0145", "Conflict with gateways %s (workload selector %s, port %s, hosts %v).")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/analyze-list-type.yaml"},
    		analyzer:   &gateway.ConflictingGatewayAnalyzer{},
    		expected: []message{
    			{msg.ConflictingGateways, "Gateway alpha"},
    			{msg.ConflictingGateways, "Gateway alpha-l"},
    			{msg.ConflictingGateways, "Gateway beta-l"},
    		},
    	},
    	{
    		name:       "Analyze invalid telemetry",
    		inputFiles: []string{"testdata/telemetry-invalid-provider.yaml"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

        code: IST0144
        level: Warning
        description: "Application pods should not run as user ID (UID) 1337"
        template: "User ID (UID) 1337 is reserved for the sidecar proxy."
    
      - name: "ConflictingGateways"
        code: IST0145
        level: Error
        description: "Gateway should not have the same selector, port and matched hosts of server"
        template: "Conflict with gateways %s (workload selector %s, port %s, hosts %v)."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top