mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-01-21 17:32:50 +08:00
ec723b2112
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. sample-controller: add example CRD controller **What this PR does / why we need it**: Adds a sample-controller example repository fixes #52752 **Special notes for your reviewer**: This is currently based on the sttts:sttts-codegen-scripts branch and should not be merged until that is (ref https://github.com/kubernetes/kubernetes/pull/52186) **Release note**: ``` Add sample-controller repository ``` /cc @sttts @nikhita @colemickens Kubernetes-commit: 9a7800f7d2efb88b397674672ac56f898826cf7c
52 lines
1.5 KiB
Docker
52 lines
1.5 KiB
Docker
#
|
|
# This Dockerfile builds a recent curl with HTTP/2 client support, using
|
|
# a recent nghttp2 build.
|
|
#
|
|
# See the Makefile for how to tag it. If Docker and that image is found, the
|
|
# Go tests use this curl binary for integration tests.
|
|
#
|
|
|
|
FROM ubuntu:trusty
|
|
|
|
RUN apt-get update && \
|
|
apt-get upgrade -y && \
|
|
apt-get install -y git-core build-essential wget
|
|
|
|
RUN apt-get install -y --no-install-recommends \
|
|
autotools-dev libtool pkg-config zlib1g-dev \
|
|
libcunit1-dev libssl-dev libxml2-dev libevent-dev \
|
|
automake autoconf
|
|
|
|
# The list of packages nghttp2 recommends for h2load:
|
|
RUN apt-get install -y --no-install-recommends make binutils \
|
|
autoconf automake autotools-dev \
|
|
libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev \
|
|
libev-dev libevent-dev libjansson-dev libjemalloc-dev \
|
|
cython python3.4-dev python-setuptools
|
|
|
|
# Note: setting NGHTTP2_VER before the git clone, so an old git clone isn't cached:
|
|
ENV NGHTTP2_VER 895da9a
|
|
RUN cd /root && git clone https://github.com/tatsuhiro-t/nghttp2.git
|
|
|
|
WORKDIR /root/nghttp2
|
|
RUN git reset --hard $NGHTTP2_VER
|
|
RUN autoreconf -i
|
|
RUN automake
|
|
RUN autoconf
|
|
RUN ./configure
|
|
RUN make
|
|
RUN make install
|
|
|
|
WORKDIR /root
|
|
RUN wget http://curl.haxx.se/download/curl-7.45.0.tar.gz
|
|
RUN tar -zxvf curl-7.45.0.tar.gz
|
|
WORKDIR /root/curl-7.45.0
|
|
RUN ./configure --with-ssl --with-nghttp2=/usr/local
|
|
RUN make
|
|
RUN make install
|
|
RUN ldconfig
|
|
|
|
CMD ["-h"]
|
|
ENTRYPOINT ["/usr/local/bin/curl"]
|
|
|