Revision 5cfb9950a13b01ef40c34c3d77274ba4a7254a82 authored by Jarno Rajahalme on 14 April 2019, 16:56:53 UTC, committed by Ian Vernon on 16 April 2019, 00:15:51 UTC
[ upstream commit 3c4c3c22c8c09fcdc6a6e196515f32afa2c8175e ]

Replace the istio-cilium.yaml file with a new one, generated with helm
using the updated Istio GSG.

Replace the bookinfo manifests with ones newly generated with helm.

Istio release 1.1.3 is not out yet, but we can use the 1.1.3 proxy
with Istio 1.1.2 to get the path normalization fix in.

Signed-off-by: Jarno Rajahalme <jarno@covalent.io>
Signed-off-by: vagrant <vagrant@k8s1>
1 parent 172e1d8
Raw File
cilium-docker-plugin.Dockerfile
FROM docker.io/library/golang:1.12.1 as builder
LABEL maintainer="maintainer@cilium.io"
ADD . /go/src/github.com/cilium/cilium
WORKDIR /go/src/github.com/cilium/cilium/plugins/cilium-docker
ARG LOCKDEBUG
ARG V
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o cilium-docker
RUN strip cilium-docker

FROM scratch
LABEL maintainer="maintainer@cilium.io"
COPY --from=builder /go/src/github.com/cilium/cilium/plugins/cilium-docker/cilium-docker /usr/bin/cilium-docker
WORKDIR /
CMD ["/usr/bin/cilium-docker"]
back to top