mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-26 21:17:23 +00:00
Merge pull request #38927 from luxas/remove_maintainer
Automatic merge from submit-queue Remove all MAINTAINER statements in the codebase as they are deprecated **What this PR does / why we need it**: ref: https://github.com/docker/docker/pull/25466 **Release note**: ```release-note Remove all MAINTAINER statements in Dockerfiles in the codebase as they are deprecated by docker ``` @ixdy @thockin (who else should be notified?)
This commit is contained in:
commit
274a9f0f70
@ -13,6 +13,5 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM BASEIMAGE
|
FROM BASEIMAGE
|
||||||
MAINTAINER Tim Hockin <thockin@google.com>
|
|
||||||
ADD kube-dns /
|
ADD kube-dns /
|
||||||
ENTRYPOINT ["/kube-dns"]
|
ENTRYPOINT ["/kube-dns"]
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
|
|
||||||
FROM java:openjdk-8-jre
|
FROM java:openjdk-8-jre
|
||||||
|
|
||||||
MAINTAINER Mik Vyatskov "vmik@google.com"
|
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
ENV ELASTICSEARCH_VERSION 2.4.1
|
ENV ELASTICSEARCH_VERSION 2.4.1
|
||||||
|
@ -23,8 +23,6 @@
|
|||||||
# information about installing fluentd using deb package.
|
# information about installing fluentd using deb package.
|
||||||
|
|
||||||
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
||||||
MAINTAINER Alex Robinson "arob@google.com"
|
|
||||||
MAINTAINER Jimmi Dyson "jimmidyson@gmail.com"
|
|
||||||
|
|
||||||
# Ensure there are enough file descriptors for running Fluentd.
|
# Ensure there are enough file descriptors for running Fluentd.
|
||||||
RUN ulimit -n 65536
|
RUN ulimit -n 65536
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
|
|
||||||
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
||||||
|
|
||||||
MAINTAINER Mik Vyatskov "vmik@google.com"
|
|
||||||
|
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
ENV KIBANA_VERSION 4.6.1
|
ENV KIBANA_VERSION 4.6.1
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
|
|
||||||
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
||||||
|
|
||||||
MAINTAINER Mik Vyatskov "vmik@google.com"
|
|
||||||
|
|
||||||
# Disable prompts from apt
|
# Disable prompts from apt
|
||||||
ENV DEBIAN_FRONTEND noninteractive
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM nginx:1.11
|
FROM nginx:1.11
|
||||||
MAINTAINER Matthew Fisher <mfisher@deis.com>
|
|
||||||
|
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y \
|
&& apt-get install -y \
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM ubuntu:xenial
|
FROM ubuntu:xenial
|
||||||
MAINTAINER vishh@google.com
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y netbase nfs-common=1:1.2.8-9ubuntu12 glusterfs-client=3.7.6-1ubuntu1
|
RUN apt-get update && apt-get install -y netbase nfs-common=1:1.2.8-9ubuntu12 glusterfs-client=3.7.6-1ubuntu1
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM gliderlabs/alpine
|
FROM gliderlabs/alpine
|
||||||
MAINTAINER Mehdy Bohlool <mehdy@google.com>
|
|
||||||
|
|
||||||
RUN apk-install bash
|
RUN apk-install bash
|
||||||
ADD etcd-empty-dir-cleanup.sh etcd-empty-dir-cleanup.sh
|
ADD etcd-empty-dir-cleanup.sh etcd-empty-dir-cleanup.sh
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM BASEIMAGE
|
FROM BASEIMAGE
|
||||||
MAINTAINER Wojciech Tyczynski <wojtekt@google.com>
|
|
||||||
|
|
||||||
EXPOSE 2379 2380 4001 7001
|
EXPOSE 2379 2380 4001 7001
|
||||||
COPY etcd* etcdctl* /usr/local/bin/
|
COPY etcd* etcdctl* /usr/local/bin/
|
||||||
|
@ -13,6 +13,5 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM fedora
|
FROM fedora
|
||||||
MAINTAINER David Eads <deads@redhat.com>
|
|
||||||
ADD kubernetes-discovery /
|
ADD kubernetes-discovery /
|
||||||
ENTRYPOINT ["/kubernetes-discovery"]
|
ENTRYPOINT ["/kubernetes-discovery"]
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
MAINTAINER Daniel Smith <dbsmith@google.com>
|
|
||||||
ADD explorer explorer
|
ADD explorer explorer
|
||||||
ADD README.md README.md
|
ADD README.md README.md
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
FROM nginx
|
FROM nginx
|
||||||
|
|
||||||
MAINTAINER Mengqi Yu <mengqiy@google.com>
|
|
||||||
|
|
||||||
COPY index2.html /usr/share/nginx/html/index2.html
|
COPY index2.html /usr/share/nginx/html/index2.html
|
||||||
RUN chmod +r /usr/share/nginx/html/index2.html
|
RUN chmod +r /usr/share/nginx/html/index2.html
|
||||||
|
@ -13,6 +13,5 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
MAINTAINER Daniel Smith <dbsmith@google.com>
|
|
||||||
ADD kubectl kubectl
|
ADD kubectl kubectl
|
||||||
ENTRYPOINT ["/kubectl"]
|
ENTRYPOINT ["/kubectl"]
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM node:0.10
|
FROM node:0.10
|
||||||
MAINTAINER Christiaan Hees <christiaan@q42.nl>
|
|
||||||
|
|
||||||
ONBUILD WORKDIR /appsrc
|
ONBUILD WORKDIR /appsrc
|
||||||
ONBUILD COPY . /appsrc
|
ONBUILD COPY . /appsrc
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
FROM quay.io/pires/docker-jre:8u45-2
|
FROM quay.io/pires/docker-jre:8u45-2
|
||||||
|
|
||||||
MAINTAINER Paulo Pires <pjpires@gmail.com>
|
|
||||||
|
|
||||||
EXPOSE 5701
|
EXPOSE 5701
|
||||||
|
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
FROM rethinkdb:1.16.0
|
FROM rethinkdb:1.16.0
|
||||||
|
|
||||||
MAINTAINER BinZhao <wo@zhaob.in>
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -yq curl && \
|
apt-get install -yq curl && \
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM centos
|
FROM centos
|
||||||
MAINTAINER Jan Safranek, jsafrane@redhat.com; Huamin Chen, hchen@redhat.com
|
|
||||||
RUN yum -y install /usr/bin/ps nfs-utils && yum clean all
|
RUN yum -y install /usr/bin/ps nfs-utils && yum clean all
|
||||||
RUN mkdir -p /exports
|
RUN mkdir -p /exports
|
||||||
ADD run_nfs.sh /usr/local/bin/
|
ADD run_nfs.sh /usr/local/bin/
|
||||||
|
@ -13,6 +13,5 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM busybox
|
FROM busybox
|
||||||
MAINTAINER Prashanth B <beeps@google.com>
|
|
||||||
ADD main main
|
ADD main main
|
||||||
ENTRYPOINT ["/main"]
|
ENTRYPOINT ["/main"]
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM alpine
|
FROM alpine
|
||||||
MAINTAINER Bowei Du "bowei@google.com"
|
|
||||||
|
|
||||||
RUN apk update --no-cache
|
RUN apk update --no-cache
|
||||||
RUN apk add bind-tools
|
RUN apk add bind-tools
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM gcr.io/google_containers/ubuntu-slim:0.2
|
FROM gcr.io/google_containers/ubuntu-slim:0.2
|
||||||
MAINTAINER jay@apache.org
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends iperf bash \
|
RUN apt-get update && apt-get install -y --no-install-recommends iperf bash \
|
||||||
&& apt-get clean -y \
|
&& apt-get clean -y \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
MAINTAINER Abhishek Shah "abshah@google.com"
|
|
||||||
|
|
||||||
RUN apt-get -q update && \
|
RUN apt-get -q update && \
|
||||||
apt-get install -y dnsutils && \
|
apt-get install -y dnsutils && \
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
FROM gcr.io/google_containers/ubuntu-slim:0.4
|
||||||
|
|
||||||
MAINTAINER Mik Vyatskov <vmik@google.com>
|
|
||||||
|
|
||||||
COPY logs-generator /
|
COPY logs-generator /
|
||||||
|
|
||||||
|
@ -13,6 +13,5 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM busybox
|
FROM busybox
|
||||||
MAINTAINER Prashanth B <beeps@google.com>
|
|
||||||
ADD server server
|
ADD server server
|
||||||
ENTRYPOINT ["/server"]
|
ENTRYPOINT ["/server"]
|
||||||
|
@ -13,6 +13,5 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM alpine
|
FROM alpine
|
||||||
MAINTAINER Bowei Du <bowei@google.com>
|
|
||||||
COPY net /net
|
COPY net /net
|
||||||
RUN apk update && apk add curl
|
RUN apk update && apk add curl
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM busybox
|
FROM busybox
|
||||||
MAINTAINER Abhishek Shah "abshah@google.com"
|
|
||||||
|
|
||||||
ADD netexec netexec
|
ADD netexec netexec
|
||||||
ADD netexec.go netexec.go
|
ADD netexec.go netexec.go
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
MAINTAINER Daniel Smith <dbsmith@google.com>
|
|
||||||
ADD webserver webserver
|
ADD webserver webserver
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
ENTRYPOINT ["/webserver"]
|
ENTRYPOINT ["/webserver"]
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
# TODO: get rid of bash dependency and switch to plain busybox.
|
# TODO: get rid of bash dependency and switch to plain busybox.
|
||||||
# The tar in busybox also doesn't seem to understand compression.
|
# The tar in busybox also doesn't seem to understand compression.
|
||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
MAINTAINER Prashanth.B <beeps@google.com>
|
|
||||||
|
|
||||||
# TODO: just use standard redis when there is one for 3.2.0.
|
# TODO: just use standard redis when there is one for 3.2.0.
|
||||||
RUN apt-get update && apt-get install -y wget make gcc
|
RUN apt-get update && apt-get install -y wget make gcc
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
# TODO: get rid of bash dependency and switch to plain busybox.
|
# TODO: get rid of bash dependency and switch to plain busybox.
|
||||||
# The tar in busybox also doesn't seem to understand compression.
|
# The tar in busybox also doesn't seem to understand compression.
|
||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
MAINTAINER Prashanth.B <beeps@google.com>
|
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y wget netcat
|
RUN apt-get update && apt-get install -y wget netcat
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM scratch
|
FROM scratch
|
||||||
MAINTAINER Daniel Smith <dbsmith@google.com>
|
|
||||||
ADD localhost.crt localhost.crt
|
ADD localhost.crt localhost.crt
|
||||||
ADD localhost.key localhost.key
|
ADD localhost.key localhost.key
|
||||||
ADD porter porter
|
ADD porter porter
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM jess/stress
|
FROM jess/stress
|
||||||
MAINTAINER Ewa Socala <socaa@google.com>
|
|
||||||
ADD consumer /consumer
|
ADD consumer /consumer
|
||||||
ADD consume-cpu /consume-cpu
|
ADD consume-cpu /consume-cpu
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM busybox
|
FROM busybox
|
||||||
MAINTAINER Jerzy Szczepkowski <jsz@google.com>
|
|
||||||
ADD controller /controller
|
ADD controller /controller
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
ENTRYPOINT ["/controller"]
|
ENTRYPOINT ["/controller"]
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM BASEIMAGE
|
FROM BASEIMAGE
|
||||||
MAINTAINER Tim Hockin <thockin@google.com>
|
|
||||||
ADD serve_hostname /serve_hostname
|
ADD serve_hostname /serve_hostname
|
||||||
EXPOSE 9376
|
EXPOSE 9376
|
||||||
ENTRYPOINT ["/serve_hostname"]
|
ENTRYPOINT ["/serve_hostname"]
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM centos:6
|
FROM centos:6
|
||||||
MAINTAINER Huamin Chen, hchen@redhat.com
|
|
||||||
|
|
||||||
ADD install.sh /usr/local/bin/
|
ADD install.sh /usr/local/bin/
|
||||||
RUN /usr/local/bin/install.sh
|
RUN /usr/local/bin/install.sh
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM centos
|
FROM centos
|
||||||
MAINTAINER Jan Safranek, jsafrane@redhat.com
|
|
||||||
RUN yum -y install hostname centos-release-gluster && yum -y install glusterfs-server && yum clean all
|
RUN yum -y install hostname centos-release-gluster && yum -y install glusterfs-server && yum clean all
|
||||||
ADD glusterd.vol /etc/glusterfs/
|
ADD glusterd.vol /etc/glusterfs/
|
||||||
ADD run_gluster.sh /usr/local/bin/
|
ADD run_gluster.sh /usr/local/bin/
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM fedora
|
FROM fedora
|
||||||
MAINTAINER Jan Safranek, jsafrane@redhat.com
|
|
||||||
RUN yum install -y iscsi-initiator-utils targetcli net-tools strace && yum clean all
|
RUN yum install -y iscsi-initiator-utils targetcli net-tools strace && yum clean all
|
||||||
ADD run_iscsid.sh /usr/local/bin/
|
ADD run_iscsid.sh /usr/local/bin/
|
||||||
ADD initiatorname.iscsi /etc/iscsi/
|
ADD initiatorname.iscsi /etc/iscsi/
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM centos
|
FROM centos
|
||||||
MAINTAINER Jan Safranek, jsafrane@redhat.com
|
|
||||||
RUN yum -y install /usr/bin/ps nfs-utils && yum clean all
|
RUN yum -y install /usr/bin/ps nfs-utils && yum clean all
|
||||||
RUN mkdir -p /exports
|
RUN mkdir -p /exports
|
||||||
ADD run_nfs.sh /usr/local/bin/
|
ADD run_nfs.sh /usr/local/bin/
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
# Based on image by Ricardo Rocha, ricardo@catalyst.net.nz
|
# Based on image by Ricardo Rocha, ricardo@catalyst.net.nz
|
||||||
|
|
||||||
FROM fedora
|
FROM fedora
|
||||||
MAINTAINER Jan Safranek jsafrane@redhat.com
|
|
||||||
|
|
||||||
# Base Packages
|
# Base Packages
|
||||||
RUN yum install -y wget ceph ceph-fuse strace && yum clean all
|
RUN yum install -y wget ceph ceph-fuse strace && yum clean all
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
FROM busybox
|
FROM busybox
|
||||||
MAINTAINER Satnam Singh <satnam@google.com>
|
|
||||||
ADD cauldron cauldron
|
ADD cauldron cauldron
|
||||||
ADD cauldron.go cauldron.go
|
ADD cauldron.go cauldron.go
|
||||||
ENTRYPOINT ["/cauldron"]
|
ENTRYPOINT ["/cauldron"]
|
||||||
|
Loading…
Reference in New Issue
Block a user