Skip to content

Commit

Permalink
fixup! Kubernetes migration refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
cbosdo committed Nov 22, 2024
1 parent 434a0d6 commit a87677c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/kubernetes/converters.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func ConvertPortMaps(ports []types.PortMap) []core.ContainerPort {

for _, port := range ports {
protocol := core.ProtocolTCP
if port.Protocol == "UDP" {
if port.Protocol == "udp" {
protocol = core.ProtocolUDP
}
converted := core.ContainerPort{
Expand Down

0 comments on commit a87677c

Please sign in to comment.