diff options
author | Paul Holzinger <paul.holzinger@web.de> | 2020-12-03 22:26:29 +0100 |
---|---|---|
committer | Paul Holzinger <paul.holzinger@web.de> | 2021-01-28 11:33:29 +0100 |
commit | e42f9ee69766758968f11e5a6a5a189f5142ba78 (patch) | |
tree | 8b9d0ff7efd5d995c5621a2ef7862582ae977d99 /contrib/rootless-cni-infra/Containerfile | |
parent | 2b97c1d733b1fc310ecc6b4babbd7c6725718d46 (diff) | |
download | podman-e42f9ee69766758968f11e5a6a5a189f5142ba78.tar.gz podman-e42f9ee69766758968f11e5a6a5a189f5142ba78.tar.bz2 podman-e42f9ee69766758968f11e5a6a5a189f5142ba78.zip |
Add support for rootless network-aliases
Make sure we pass the network aliases as capability args to the
cnitool in the rootless-cni-infra container. Also update the
dnsname plugin in the cni-infra container.
Fixes #8567
Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
Diffstat (limited to 'contrib/rootless-cni-infra/Containerfile')
-rw-r--r-- | contrib/rootless-cni-infra/Containerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/rootless-cni-infra/Containerfile b/contrib/rootless-cni-infra/Containerfile index 579d192b9..4324f39d2 100644 --- a/contrib/rootless-cni-infra/Containerfile +++ b/contrib/rootless-cni-infra/Containerfile @@ -2,7 +2,7 @@ ARG GOLANG_VERSION=1.15 ARG ALPINE_VERSION=3.12 ARG CNI_VERSION=v0.8.0 ARG CNI_PLUGINS_VERSION=v0.8.7 -ARG DNSNAME_VERSION=v1.0.0 +ARG DNSNAME_VERSION=v1.1.1 FROM golang:${GOLANG_VERSION}-alpine${ALPINE_VERSION} AS golang-base RUN apk add --no-cache git @@ -33,4 +33,4 @@ COPY rootless-cni-infra /usr/local/bin ENV CNI_PATH=/opt/cni/bin CMD ["sleep", "infinity"] -ENV ROOTLESS_CNI_INFRA_VERSION=4 +ENV ROOTLESS_CNI_INFRA_VERSION=5 |