mirror of
https://github.com/kubereboot/kured.git
synced 2026-03-26 04:26:57 +00:00
After the release of kured 1.4.0 we should be able to go back. This was decided in our meeting (https://docs.google.com/document/d/1bsHTjHhqaaZ7yJnXF6W8c89UB_yn-OoSZEmDnIP34n8/edit#heading=h.8cgszb6vuhza) Let's go with supporting 1.1[678] in this release.
8 lines
397 B
Docker
8 lines
397 B
Docker
FROM alpine:3.11
|
|
RUN apk update && apk add ca-certificates tzdata && rm -rf /var/cache/apk/*
|
|
# NB: you may need to update RBAC permissions when upgrading kubectl - see kured-rbac.yaml for details
|
|
ADD https://storage.googleapis.com/kubernetes-release/release/v1.17.5/bin/linux/amd64/kubectl /usr/bin/kubectl
|
|
RUN chmod 0755 /usr/bin/kubectl
|
|
COPY ./kured /usr/bin/kured
|
|
ENTRYPOINT ["/usr/bin/kured"]
|