Skip to content

Commit 9f1c79b

Browse files
dseevrsrampal
authored andcommitted
Revert "refactor v2plugin Dockerfile & the main netplugin image Dockerfile" (#998)
1 parent a450b39 commit 9f1c79b

File tree

4 files changed

+20
-31
lines changed

4 files changed

+20
-31
lines changed

install/v2plugin/Dockerfile

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,14 @@
1-
##
2-
#Copyright 2017 Cisco Systems Inc. All rights reserved.
3-
#
4-
#Licensed under the Apache License, Version 2.0 (the "License");
5-
#you may not use this file except in compliance with the License.
6-
#You may obtain a copy of the License at
7-
#http://www.apache.org/licenses/LICENSE-2.0
8-
#
9-
#Unless required by applicable law or agreed to in writing, software
10-
#distributed under the License is distributed on an "AS IS" BASIS,
11-
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
#See the License for the specific language governing permissions and
13-
#limitations under the License.
14-
##
15-
161
# Docker v2plugin container with OVS / netplugin / netmaster
172

18-
FROM alpine:3.6
3+
FROM alpine:3.5
194
LABEL maintainer "Cisco Contiv (https://contiv.github.io)"
205

21-
RUN mkdir -p /run/docker/plugins /etc/openvswitch /var/log/contiv \
6+
RUN mkdir -p /run/docker/plugins /etc/openvswitch /var/run/contiv/log \
227
&& echo 'http://dl-cdn.alpinelinux.org/alpine/v3.4/main' >> /etc/apk/repositories \
23-
&& apk --no-cache add openvswitch=2.5.0-r0 iptables ca-certificates openssl curl bash
8+
&& apk --no-cache add openvswitch=2.5.0-r0 iptables ca-certificates openssl curl \
9+
&& wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/andyshinn/alpine-pkg-glibc/master/sgerrand.rsa.pub \
10+
&& wget https://github.com/andyshinn/alpine-pkg-glibc/releases/download/2.23-r1/glibc-2.23-r1.apk \
11+
&& apk --no-cache add glibc-2.23-r1.apk
2412

2513
COPY netplugin netmaster netctl startcontiv.sh /
2614

netplugin/netd.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
"log/syslog"
2020
"net/url"
2121
"os"
22+
"os/user"
2223
"strings"
23-
"syscall"
2424
"time"
2525

2626
"github.com/contiv/netplugin/core"
@@ -181,8 +181,8 @@ func main() {
181181
}
182182

183183
// Make sure we are running as root
184-
uid := syscall.Getuid()
185-
if uid != 0 {
184+
usr, err := user.Current()
185+
if (err != nil) || (usr.Username != "root") {
186186
log.Fatalf("This process can only be run as root")
187187
}
188188

scripts/build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ else
2626
fi
2727

2828
echo $BUILD_VERSION >$VERSION_FILE
29-
GOGC=1500 CGO_ENABLED=0 go install \
30-
-a -installsuffix cgo \
29+
30+
GOGC=1500 go install \
3131
-ldflags "-X $PKG_NAME.version=$BUILD_VERSION \
3232
-X $PKG_NAME.buildTime=$BUILD_TIME \
3333
-X $PKG_NAME.gitCommit=$GIT_COMMIT \
34-
-s -w -d" -pkgdir /tmp/foo-cgo \
34+
-s -w" \
3535
-v $TO_BUILD

scripts/netContain/Dockerfile

+8-7
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,19 @@
1313
#limitations under the License.
1414
##
1515

16-
# One Container for OVS / netplugin / netmaster
16+
# One Container for OVS / netplugin / netmaster
1717

18-
FROM alpine:3.6
19-
LABEL maintainer "Cisco Contiv (https://contiv.github.io)"
18+
FROM ubuntu:16.04
2019

21-
# Make sure to Modify the Proxy Server values if required
20+
# Make sure to Modify the Proxy Server values if required
2221
# ENV export http_proxy=http://proxy.localhost.com:8080
2322
# ENV export https_proxy=https://proxy.localhost.com:8080
2423

25-
RUN mkdir -p /etc/openvswitch \
26-
&& echo 'http://dl-cdn.alpinelinux.org/alpine/v3.4/main' >> /etc/apk/repositories \
27-
&& apk --no-cache add openvswitch=2.5.0-r0 iptables ca-certificates openssl curl bash
24+
RUN apt-get update \
25+
&& apt-get install -y openvswitch-switch=2.5.2-0ubuntu0.16.04.1 \
26+
net-tools \
27+
iptables \
28+
&& rm -rf /var/lib/apt/lists/*
2829

2930
COPY ./bin /contiv/bin/
3031
COPY ./scripts /contiv/scripts/

0 commit comments

Comments
 (0)