aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authorEvans Ye <evansye@apache.org>2015-09-22 18:12:59 +0000
committerEvans Ye <evansye@apache.org>2015-10-24 02:40:10 +0800
commit755896bbd9913608deb414564ecb961ddf2619d0 (patch)
tree5fe809b926b6951181c6b2fe0b72b8e0850e8e1f /docker
parent8bea68ff04773e711a0e8f3a622bb48f082471a8 (diff)
BIGTOP-1908. Move bigtop-deploy's dockerfiles into a centralized docker place
Diffstat (limited to 'docker')
-rw-r--r--docker/bigtop-deploy/centos-6/Dockerfile34
-rwxr-xr-xdocker/bigtop-deploy/centos-6/build.sh18
-rw-r--r--docker/bigtop-deploy/debian-8/Dockerfile34
-rwxr-xr-xdocker/bigtop-deploy/debian-8/build.sh18
4 files changed, 104 insertions, 0 deletions
diff --git a/docker/bigtop-deploy/centos-6/Dockerfile b/docker/bigtop-deploy/centos-6/Dockerfile
new file mode 100644
index 00000000..823dfc32
--- /dev/null
+++ b/docker/bigtop-deploy/centos-6/Dockerfile
@@ -0,0 +1,34 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+FROM bigtop/puppet:centos-6
+
+COPY bigtop_toolchain /etc/puppet/modules/bigtop_toolchain
+
+# enable ssh
+RUN yum -y install openssh-server openssh-clients vim && \
+ ssh-keygen -q -N "" -t dsa -f /etc/ssh/ssh_host_dsa_key && \
+ ssh-keygen -q -N "" -t rsa -f /etc/ssh/ssh_host_rsa_key && \
+ # requiretty off
+ sed -i.bak 's/requiretty/!requiretty/' /etc/sudoers && \
+ # setup vagrant account
+ mkdir /root/.ssh && \
+ chmod 0700 /root/.ssh && \
+ wget http://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub --no-check-certificate -O /root/.ssh/authorized_keys && \
+ chmod 0600 /root/.ssh/authorized_keys && \
+ # Install required Puppet modules
+ puppet apply -e "include bigtop_toolchain::puppet-modules"
+
+CMD /usr/sbin/sshd -D
diff --git a/docker/bigtop-deploy/centos-6/build.sh b/docker/bigtop-deploy/centos-6/build.sh
new file mode 100755
index 00000000..c9a22c81
--- /dev/null
+++ b/docker/bigtop-deploy/centos-6/build.sh
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+cp -r ../../../bigtop_toolchain .
+docker build -t bigtop/deploy:centos-6 .
+rm -rf bigtop_toolchain
diff --git a/docker/bigtop-deploy/debian-8/Dockerfile b/docker/bigtop-deploy/debian-8/Dockerfile
new file mode 100644
index 00000000..bd0e8d3c
--- /dev/null
+++ b/docker/bigtop-deploy/debian-8/Dockerfile
@@ -0,0 +1,34 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+FROM bigtop/puppet:debian-8
+
+COPY bigtop_toolchain /etc/puppet/modules/bigtop_toolchain
+
+# enable ssh
+RUN apt-get update && \
+ apt-get install -y openssh-server vim && \
+ mkdir -p /var/run/sshd && \
+ # requiretty off
+ sed -i.bak 's/requiretty/!requiretty/' /etc/sudoers && \
+ # setup vagrant account
+ mkdir -p /root/.ssh && \
+ chmod 0700 /root/.ssh && \
+ wget http://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub --no-check-certificate -O /root/.ssh/authorized_keys && \
+ chmod 0600 /root/.ssh/authorized_keys && \
+ # Install required Puppet modules
+ puppet apply -e "include bigtop_toolchain::puppet-modules"
+
+CMD /usr/sbin/sshd -D
diff --git a/docker/bigtop-deploy/debian-8/build.sh b/docker/bigtop-deploy/debian-8/build.sh
new file mode 100755
index 00000000..e16d3ba3
--- /dev/null
+++ b/docker/bigtop-deploy/debian-8/build.sh
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements. See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+cp -r ../../../bigtop_toolchain .
+docker build -t bigtop/deploy:debian-8 .
+rm -rf bigtop_toolchain