diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2022-11-08 12:20:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-11-08 12:20:08 +0000 |
commit | bb23177521042d092d94922187b2a7cb9052c85a (patch) | |
tree | fbcea73deaee9a7d04796ff6cd2936b5c2ef2c56 /docs/archived/shell/openstack-k8s-workernode.sh | |
parent | 365bdbc7853b4ca522899629c4ec653a06e5931a (diff) | |
parent | 0fb3b8f4d48a066259b8a9ea2a18d68d7644f8e5 (diff) |
Merge "[RDT] Refactoring RTD"
Diffstat (limited to 'docs/archived/shell/openstack-k8s-workernode.sh')
-rw-r--r-- | docs/archived/shell/openstack-k8s-workernode.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/docs/archived/shell/openstack-k8s-workernode.sh b/docs/archived/shell/openstack-k8s-workernode.sh new file mode 100644 index 0000000000..8b1b9e41ee --- /dev/null +++ b/docs/archived/shell/openstack-k8s-workernode.sh @@ -0,0 +1,34 @@ +#!/bin/sh + +DOCKER_VERSION=18.09.5 + +apt-get update + +curl https://releases.rancher.com/install-docker/$DOCKER_VERSION.sh | sh +mkdir -p /etc/systemd/system/docker.service.d/ +cat > /etc/systemd/system/docker.service.d/docker.conf << EOF +[Service] +ExecStart= +ExecStart=/usr/bin/dockerd -H fd:// --insecure-registry=nexus3.onap.org:10001 +EOF + +sudo usermod -aG docker ubuntu + +systemctl daemon-reload +systemctl restart docker +apt-mark hold docker-ce + +IP_ADDR=$(ip address |grep ens|grep inet|awk '{print $2}'| awk -F / '{print $1}') +HOST_NAME=$(hostname) + +echo "$IP_ADDR $HOST_NAME" >> /etc/hosts + +docker login -u docker -p docker nexus3.onap.org:10001 + +sudo apt-get install make -y + +# install nfs +sudo apt-get install nfs-common -y + + +exit 0 |