Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewConflictingGateways (0.29 sec)

  1. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    					}
    				}
    			}
    		}
    		if conflictingGWMatch > 0 {
    			sort.Strings(gateways)
    			reportMsg := strings.Join(gateways, ",")
    			hostsMsg := strings.Join(server.GetHosts(), ",")
    			m := msg.NewConflictingGateways(r, reportMsg, sGWSelector, sPortNumber, hostsMsg)
    			c.Report(gvk.Gateway, m)
    		}
    	}
    }
    
    // isGWsHostMatched implements gateway's hosts match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    func NewInvalidApplicationUID(r *resource.Instance) diag.Message {
    	return diag.NewMessage(
    		InvalidApplicationUID,
    		r,
    	)
    }
    
    // NewConflictingGateways returns a new diag.Message based on ConflictingGateways.
    func NewConflictingGateways(r *resource.Instance, gateway string, selector string, portnumber string, hosts string) diag.Message {
    	return diag.NewMessage(
    		ConflictingGateways,
    		r,
    		gateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top