mirror of https://github.com/status-im/consul.git
23 lines
424 B
Go
23 lines
424 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package catalogv2beta1
|
|
|
|
func (s *Service) IsMeshEnabled() bool {
|
|
for _, port := range s.GetPorts() {
|
|
if port.Protocol == Protocol_PROTOCOL_MESH {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (s *Service) FindServicePort(name string) *ServicePort {
|
|
for _, port := range s.GetPorts() {
|
|
if port.TargetPort == name {
|
|
return port
|
|
}
|
|
}
|
|
return nil
|
|
}
|