8ef5d94674
This PS refactors the ceph chart and secret generation process. The updated chart replaces the existing "bootstrap" chart. Additionally, Ceph manifests and deployment guides were modified accordingly. Change-Id: I6f5bb88fc0f40cfee8865d9dab83859d765e7537 Co-Authored-By: Larry Rensing <lr699s@att.com>
21 lines
563 B
Docker
21 lines
563 B
Docker
FROM ubuntu:16.04
|
|
MAINTAINER pete.birley@att.com
|
|
|
|
ARG KUBE_VERSION=v1.6.5
|
|
|
|
RUN set -x \
|
|
&& TMP_DIR=$(mktemp --directory) \
|
|
&& cd ${TMP_DIR} \
|
|
&& apt-get update \
|
|
&& apt-get install -y \
|
|
apt-transport-https \
|
|
ca-certificates \
|
|
curl \
|
|
python \
|
|
jq \
|
|
# Install kubectl:
|
|
&& curl -sSL https://dl.k8s.io/${KUBE_VERSION}/kubernetes-client-linux-amd64.tar.gz | tar -zxv --strip-components=1 \
|
|
&& mv ${TMP_DIR}/client/bin/kubectl /usr/bin/kubectl \
|
|
&& chmod +x /usr/bin/kubectl \
|
|
&& rm -rf ${TMP_DIR}
|