From 69d9e6db4cb251335a5e8c3faccbb5b89e89b5e7 Mon Sep 17 00:00:00 2001 From: "Dodda Prateek (pd2839)" Date: Wed, 7 Aug 2019 10:19:35 -0500 Subject: [PATCH] Chart/Dockerfile for Openstack Utility Container Added Support for rbac Change-Id: I6644824776f7890c2475904ba3404e281e10e54e Co-authored-by: Sreejith Punnapuzha --- .../Dockerfile.ubuntu_xenial | 31 ++++ Dockerfiles/openstack-utility/build.sh | 14 ++ Openstack_Utility_Readme | 109 ++++++++++++++ install_openstack_utility.sh | 20 +++ openstack-utility/Chart.yaml | 33 +++++ openstack-utility/requirements.yaml | 18 +++ .../templates/bin/_bootstrap.sh.tpl | 19 +++ openstack-utility/templates/bin/_start.sh.tpl | 19 +++ .../templates/bin/_utilscli-sudo.tpl | 16 ++ .../utility/_openstack-utility-rootwrap.tpl | 22 +++ .../templates/bin/utility/_utilscli.tpl | 17 +++ .../templates/configmap-bin.yaml | 49 +++++++ .../templates/configmap-etc-client.yaml | 30 ++++ .../templates/configmap-etc-sudoers.yaml | 27 ++++ .../templates/deployment-utility.yaml | 135 +++++++++++++++++ .../test-openstackutility-running.yaml | 30 ++++ openstack-utility/values.yaml | 138 ++++++++++++++++++ zuul.d/openstack-utility.yaml | 35 +++++ 18 files changed, 762 insertions(+) create mode 100755 Dockerfiles/openstack-utility/Dockerfile.ubuntu_xenial create mode 100755 Dockerfiles/openstack-utility/build.sh create mode 100644 Openstack_Utility_Readme create mode 100755 install_openstack_utility.sh create mode 100644 openstack-utility/Chart.yaml create mode 100644 openstack-utility/requirements.yaml create mode 100644 openstack-utility/templates/bin/_bootstrap.sh.tpl create mode 100644 openstack-utility/templates/bin/_start.sh.tpl create mode 100644 openstack-utility/templates/bin/_utilscli-sudo.tpl create mode 100644 openstack-utility/templates/bin/utility/_openstack-utility-rootwrap.tpl create mode 100644 openstack-utility/templates/bin/utility/_utilscli.tpl create mode 100644 openstack-utility/templates/configmap-bin.yaml create mode 100644 openstack-utility/templates/configmap-etc-client.yaml create mode 100644 openstack-utility/templates/configmap-etc-sudoers.yaml create mode 100644 openstack-utility/templates/deployment-utility.yaml create mode 100644 openstack-utility/templates/test-openstackutility-running.yaml create mode 100644 openstack-utility/values.yaml create mode 100644 zuul.d/openstack-utility.yaml diff --git a/Dockerfiles/openstack-utility/Dockerfile.ubuntu_xenial b/Dockerfiles/openstack-utility/Dockerfile.ubuntu_xenial new file mode 100755 index 00000000..dd4e3a42 --- /dev/null +++ b/Dockerfiles/openstack-utility/Dockerfile.ubuntu_xenial @@ -0,0 +1,31 @@ +ARG FROM=docker.io/ubuntu:xenial +FROM ${FROM} +MAINTAINER Prateek Reddy Dodda + +RUN set -xe \ + && echo '#!/bin/sh' > /usr/sbin/policy-rc.d \ + ## If there is no shebang at the beginning of the file, the OS will try to execute it as a “normal” binary. + && echo 'exit 101' >> /usr/sbin/policy-rc.d \ + && chmod +x /usr/sbin/policy-rc.d \ + ## To prevent services from being started automatically when you install packages with dpkg, apt, etc., + && sed -i '/nobody/d' /etc/passwd \ + && echo "nobody:x:65534:65534:nobody:/nonexistent:/bin/bash" >> /etc/passwd \ + ## To Restrict User to nobody for User login. + && dpkg-divert --local --rename --add /sbin/initctl \ + && cp -a /usr/sbin/policy-rc.d /sbin/initctl \ + && sed -i 's/^exit.*/exit 0/' /sbin/initctl \ + ## To use an updated version of some application instead of old version existing on your machine. + && echo 'force-unsafe-io' > /etc/dpkg/dpkg.cfg.d/docker-apt-speedup \ + ## Temporarily disable dpkg fsync to make building faster. + && echo 'DPkg::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };' > /etc/apt/apt.conf.d/docker-clean \ + && echo 'APT::Update::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };' >> /etc/apt/apt.conf.d/docker-clean \ + && echo 'Dir::Cache::pkgcache ""; Dir::Cache::srcpkgcache "";' >> /etc/apt/apt.conf.d/docker-clean \ + && echo 'Acquire::Languages "none";' > /etc/apt/apt.conf.d/docker-no-languages \ + && echo 'Acquire::GzipIndexes "true"; Acquire::CompressionTypes::Order:: "gz";' > /etc/apt/apt.conf.d/docker-gzip-indexes \ + && echo 'Apt::AutoRemove::SuggestsImportant "false";' > /etc/apt/apt.conf.d/docker-autoremove-suggests \ + # Docker configurations for base Image + && apt-get update && apt-get install -y bash moreutils vim sudo screen rsyslog x11-apps python-oslo.rootwrap python-openstackclient python-glanceclient python-novaclient python-neutronclient python-cinderclient python-heat python3-oslo.rootwrap python3-openstackclient python3-glanceclient python3-novaclient python3-neutronclient python3-cinderclient \ + ## Install bash utilities,rsyslog,openstack client which is required for Keystone and oslo rootwrap. + && apt-get clean && rm -rf /var/lib/apt/lists/* + +CMD ["/bin/bash"] diff --git a/Dockerfiles/openstack-utility/build.sh b/Dockerfiles/openstack-utility/build.sh new file mode 100755 index 00000000..04f82342 --- /dev/null +++ b/Dockerfiles/openstack-utility/build.sh @@ -0,0 +1,14 @@ +#!/bin/bash +SCRIPT=`realpath $0` +SCRIPT_DIR=`dirname ${SCRIPT}` +## Only build from main folder +cd ${SCRIPT_DIR}/.. + +IMAGE="openstack-utility" +VERSION=${VERSION:-latest} +DISTRO=${DISTRO:-ubuntu_xenial} +REGISTRY_URI=${REGISTRY_URI:-"openstackhelm/"} +EXTRA_TAG_INFO=${EXTRA_TAG_INFO:-""} +docker build -f ${IMAGE}/Dockerfile.${DISTRO} --network=host -t ${REGISTRY_URI}${IMAGE}:${VERSION}-${DISTRO}${EXTRA_TAG_INFO} ${extra_build_args} ${IMAGE} + +cd - diff --git a/Openstack_Utility_Readme b/Openstack_Utility_Readme new file mode 100644 index 00000000..ac8ca76f --- /dev/null +++ b/Openstack_Utility_Readme @@ -0,0 +1,109 @@ +Openstack Utility Container +----------------- +Prerequisites: Deploy OSH-AIO + + +Installation +------------ +1. Add the below to /etc/sudoers + + root ALL=(ALL) NOPASSWD: ALL + ubuntu ALL=(ALL) NOPASSWD: ALL + +2. Install the latest versions of Git, CA Certs & Make if necessary + + sudo apt-get update \ + sudo apt-get dist-upgrade -y \ + sudo apt-get install --no-install-recommends -y \ + ca-certificates \ + git \ + make \ + jq \ + nmap \ + curl \ + uuid-runtime + +3. Clone the OpenStack-Helm Repos + + git clone https://git.openstack.org/openstack/openstack-helm-infra.git + git clone https://git.openstack.org/openstack/openstack-helm.git + + +4. Proxy Configuration + + In order to deploy OpenStack-Helm behind corporate proxy servers, add the following entries to openstack-helm-infra/tools/gate/devel/local-vars.yaml. + + proxy: + http: http://username:password@host:port + https: https://username:password@host:port + noproxy: 127.0.0.1,localhost,172.17.0.1,.svc.cluster.local + + Add the address of the Kubernetes API, 172.17.0.1, and .svc.cluster.local to your no_proxy and NO_PROXY environment variables. + + export no_proxy=${no_proxy},172.17.0.1,.svc.cluster.local + export NO_PROXY=${NO_PROXY},172.17.0.1,.svc.cluster.local + +5. Deploy Kubernetes & Helm + + cd openstack-helm + ./tools/deployment/developer/common/010-deploy-k8s.sh + + Please remove DNS Nameservers (namespace 10.96.0.10) from /etc/resolv.conf, Since python set-up client would fail without it. + + Setup Clients on the host and assemble the charts + ./tools/deployment/developer/common/020-setup-client.sh + + Re-add DNS nameservers back in (/etc/resolv.conf) so that keystone URL's DNS would resolve. + + Deploy the ingress controller + ./tools/deployment/developer/common/030-ingress.sh + +6. Deploy Ceph + + ./tools/deployment/developer/ceph/040-ceph.sh + + Activate the namespace to be able to use Ceph + ./tools/deployment/developer/ceph/045-ceph-ns-activate.sh + +7. Deploy Keystone + ./tools/deployment/developer/ceph/080-keystone.sh + +8. Deploy Heat + ./tools/deployment/developer/ceph/090-heat.sh + +9. Deploy Horizon + ./tools/deployment/developer/ceph/100-horizon.sh + +10.Deploy Glance + ./tools/deployment/developer/ceph/120-glance.sh + +11.Deploy Cinder + ./tools/deployment/developer/ceph/130-cinder.sh + +12.Deploy LibVirt + ./tools/deployment/developer/ceph/150-libvirt.sh + +13.Deploy Compute Kit (Nova and Neutron) + ./tools/deployment/developer/ceph/160-compute-kit.sh + +15.To run further commands from the CLI manually, execute the following to set up authentication credentials + export OS_CLOUD=openstack_helm + +16.Clone the Porthole and openstack utility repo as well. + + git clone https://review.opendev.org/openstack/airship-porthole + git pull ssh://pd2839@review.opendev.org:29418/airship/porthole refs/changes/70/674670/13 + + cd porthole + ./install_openstack_utility.sh + +Usage +----- + +Get in to the utility pod using kubectl exec. To perform any operation use the below example. Please be ready with password for accessing below cli commands. + +kubectl exec -it -n utility /bin/bash + +example: + utilscli openstack server list --os-username --os-domain-name --os-project-name --os-domain-name --os-project-name