summaryrefslogtreecommitdiff
path: root/pkg/specgenutil/util.go
diff options
context:
space:
mode:
authorColin Bendell <colin@bendell.ca>2021-11-15 13:57:25 -0500
committerColin Bendell <colin@bendell.ca>2021-11-20 19:24:21 -0500
commit02be831ce745d33cd590f8a63e4d5f776e4da4b7 (patch)
tree0c2677fcefc9b6b8012506de2e98bfc51e5dddd9 /pkg/specgenutil/util.go
parenta6976c9ca8346331001dfade295173ad1482c2f6 (diff)
downloadpodman-02be831ce745d33cd590f8a63e4d5f776e4da4b7.tar.gz
podman-02be831ce745d33cd590f8a63e4d5f776e4da4b7.tar.bz2
podman-02be831ce745d33cd590f8a63e4d5f776e4da4b7.zip
Support EXPOSE with port ranges
Fixes issue #12293. EXPOSE directive in images should mirror the --expose parameter. Specifically `EXPOSE 20000-20100/tcp` should work the same as `--expose 20000-20100/tcp` Signed-off-by: Colin Bendell <colin@bendell.ca>
Diffstat (limited to 'pkg/specgenutil/util.go')
-rw-r--r--pkg/specgenutil/util.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/specgenutil/util.go b/pkg/specgenutil/util.go
index b47082b7f..534374e71 100644
--- a/pkg/specgenutil/util.go
+++ b/pkg/specgenutil/util.go
@@ -53,11 +53,11 @@ func ParseFilters(filter []string) (map[string][]string, error) {
return filters, nil
}
-// createExpose parses user-provided exposed port definitions and converts them
+// CreateExpose parses user-provided exposed port definitions and converts them
// into SpecGen format.
// TODO: The SpecGen format should really handle ranges more sanely - we could
// be massively inflating what is sent over the wire with a large range.
-func createExpose(expose []string) (map[uint16]string, error) {
+func CreateExpose(expose []string) (map[uint16]string, error) {
toReturn := make(map[uint16]string)
for _, e := range expose {