2024-01-10 17:05:12 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2023-10-12 18:04:12 +00:00
|
|
|
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
|
|
|
|
}
|