环境准备

2 network interfaces

8GB main memory

40GB disk space

1.修改hostname

hostnamectl set-hostname kolla

2.配置域名解析

echo '10.1.10.161    kolla' >> /etc/hosts

Install packages

1.安装依赖

yum install python-devel libffi-devel gcc openssl-devel libselinux-python -y

2.安装 pip,ansible

##如果无法安装python-pip,先导入epel源
yum install epel-release -y
yum install python-pip ansible -y
pip install -U pip

安装 docker-ce(CentOS 7 使用 yum 进行安装)

# step 1: 安装必要的一些系统工具
sudo yum install -y yum-utils device-mapper-persistent-data lvm2
# Step 2: 添加软件源信息
sudo yum-config-manager --add-repo https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
# Step 3: 更新并安装Docker-CE
sudo yum makecache fast
sudo yum -y install docker-ce
# Step 4: 开启Docker服务
systemctl enable docker;systemctl restart docker

3.配置 docker 镜像加速

mkdir -p /etc/docker
tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://registry.docker-cn.com"]
}
EOF
systemctl daemon-reload;systemctl restart docker

4.安装 kolla-ansible

pip install kolla-ansible
##ERROR: Cannot uninstall 'PyYAML'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall
##出现报错不能卸载PyYAML,使用下面命令,忽略PyYAML错误
pip install kolla-ansible --ignore-installed PyYAML mkdir -p /etc/kolla
chown $USER:$USER /etc/kolla
##Copy globals.yml and passwords.yml
cp -r /usr/share/kolla-ansible/etc_examples/kolla/* /etc/kolla
##Copy all-in-one and multinode inventory files
cp /usr/share/kolla-ansible/ansible/inventory/* .

Prepare initial configuration

1.Configure Ansible /etc/ansible/ansible.cfg

[defaults]
host_key_checking=False
pipelining=True
forks=

2.配置主机清单文件,根据部署场景,这里选择 all-in-one 文件

[control]
kolla
[network]
kolla
[compute]
kolla
[storage]
kolla
[monitoring]
kolla
[deployment]
kolla

3.对 /etc/kolla/passwords.yml 文件生成随机密码,或者修改为自定义密码

kolla-genpwd

vim /etc/kolla/passwords.yml
##admin密码可以修改为自定义,在登录dashboard会用到
keystone_admin_password: 1234qwer

4.配置 /etc/kolla/globals.yml 文件

kolla_base_distro: "centos"
kolla_install_type: "source"
openstack_release: "train"
kolla_internal_vip_address: "10.1.10.161"
network_interface: "ens32"
neutron_external_interface: "ens34"
enable_haproxy: "no"
nova_compute_virt_type: "qemu"

5.配置 ssh 无密钥登录,授权节点

ssh-keygen
ssh-copy-id -i ~/.ssh/id_rsa.pub root@kolla

Deployment

##检查主机连接
ansible -i all-in-one all -m ping
##检查Bootstrap servers依赖
kolla-ansible -i ./all-in-one bootstrap-servers
##检查配置
kolla-ansible -i ./all-in-one prechecks
##pull镜像
kolla-ansible pull -i ./all-in-one
##执行部署
kolla-ansible -i ./all-in-one deploy
  • 报错1:

执行kolla-ansible -i ./all-in-one bootstrap-servers

TASK [baremetal : Generate /etc/hosts for all of the nodes] ********************************************************************************************************************************
fatal:
[kolla]: FAILED! => {"msg": "The conditional check
'inventory_hostname not in groups['bifrost'] or 'ansible_' +
hostvars[inventory_hostname]['api_interface'] in
hostvars[inventory_hostname]' failed. The error was: error while
evaluating conditional (inventory_hostname not in groups['bifrost'] or
'ansible_' + hostvars[inventory_hostname]['api_interface'] in
hostvars[inventory_hostname]): 'ansible.vars.hostvars.HostVars object'
has no attribute u'kolla'\n\nThe error appears to have been in
'/usr/share/kolla-ansible/ansible/roles/baremetal/tasks/pre-install.yml':
line 31, column 3, but may\nbe elsewhere in the file depending on the
exact syntax problem.\n\nThe offending line appears to be:\n\n\n- name:
Generate /etc/hosts for all of the nodes\n  ^ here\n"}
    to retry, use: --limit @/usr/share/kolla-ansible/ansible/kolla-host.retry

解决办法:

yum upgrade -y

更新的软件包如图

  • 报错2:

执行kolla-ansible -i ./all-in-one prechecks

TASK [prechecks : Checking Docker version] *************************************************************************************************************************************************
fatal:
[kolla]: FAILED! => {"msg": "The conditional check 'result is failed
or result.stdout | regex_replace('.*(\\\\d+\\\\.\\\\d+\\\\.\\\\d+).*',
'\\\\1')  is version(docker_version_min, '<')' failed. The error was:
template error while templating string: no test named 'version'.
String: {% if result is failed or result.stdout |
regex_replace('.*(\\\\d+\\\\.\\\\d+\\\\.\\\\d+).*', '\\\\1')  is
version(docker_version_min, '<') %} True {% else %} False {% endif
%}"}
    to retry, use: --limit @/usr/share/kolla-ansible/ansible/site.retry

解决办法:

同上,更新软件包后一并解决

  • 报错3:

执行kolla-ansible -i ./all-in-one prechecks

TASK [cinder : Checking LVM volume group exists for Cinder] ********************************************************************************************************************************
fatal:
[kolla]: FAILED! => {"changed": false, "cmd": ["vgs",
"cinder-volumes"], "delta": "0:00:00.023537", "end": "2019-12-27
16:37:44.519563", "failed_when_result": true, "msg": "non-zero return
code", "rc": 5, "start": "2019-12-27 16:37:44.496026", "stderr": " 
Volume group \"cinder-volumes\" not found\n  Cannot process volume group
cinder-volumes", "stderr_lines": ["  Volume group \"cinder-volumes\"
not found", "  Cannot process volume group cinder-volumes"], "stdout":
"", "stdout_lines": []}

解决办法:

报错没错找到cinder-volumes卷
手动创建

pvcreate /dev/sdb
vgcreate cinder-volumes /dev/sdb

详细方法参考:https://www.cnblogs.com/omgasw/p/12098312.html

Using OpenStack

1.安装CLI客户端

pip install python-openstackclient

2.生成环境脚本

kolla-ansible post-deploy . /etc/kolla/admin-openrc.sh
  • 报错4:

/usr/lib/python2.7/site-packages/requests/__init__.py:91: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (2.2.1) doesn't match a supported version

pip uninstall urllib3
pip uninstall chardet
pip install --upgrade requests

https://www.cnblogs.com/omgasw/p/12054988.html

  • 报错5:

ImportError: cannot import name decorate

sed -i '/^from decorator import decorate/s/from/#from/' /usr/lib/python2./site-packages/dogpile/cache/region.py

https://www.cnblogs.com/omgasw/p/12054817.html

3.使用脚本文件初始化运行环境

/usr/share/kolla-ansible/init-runonce

4.删除部署的openstack环境

kolla-ansible destroy -i all-in-one --yes-i-really-really-mean-it

参考链接:

https://docs.openstack.org/kolla-ansible/latest/user/quickstart.html

kolla-ansible部署openstack allinone单节点的更多相关文章

  1. 使用Ansible部署openstack平台

    使用Ansible部署openstack平台 本周没啥博客水了,就放个云计算的作业上来吧(偷个懒) 案例描述 1.了解高可用OpenStack平台架构 2.了解Ansible部署工具的使用 3.使用A ...

  2. Openstack Grizzily 单节点测试机安装( All In One CentOS/RHEL)

    Openstack Grizzily版本已经相当完善,根据官方文档安装基本不存在什么问题,但是想快速测试了解Openstack功能的用户非常多,devstack的安 装需要check最新的代码,时常碰 ...

  3. kolla部署openstack allinone,报错 ImportError: cannot import name decorate

    使用 kolla-ansible 部署 opnenstack:stein,最后无法导入变量脚本,报错信息如下: [root@kolla ~]# . /etc/kolla/admin-openrc.sh ...

  4. kolla部署openstack allinone,报错APIError: 500 Server Error: Internal Server Error (\"oci runtime error: container_linux.go:235: starting container process caused \"container init exited prematurely

    使用 kolla-ansible 部署 opnenstack:stein 执行 kolla-ansible -i ./all-in-one deploy 开始自动化部署 在部署过程中报错,报错信息如下 ...

  5. 手动部署 OpenStack Rocky 双节点

    目录 文章目录 目录 前言 OpenStack 架构 Conceptual architecture Logical architecture 网络选型 Networking Option 1: Pr ...

  6. kubernetes系列:(二)、kubernetes部署mysql(单节点)

    使用kubeadm搭建好kubernetes集群后就可以动手部署自己的应用了. 本文用例来自官网,如有需要请参看 kubernetes官网 一.环境说明 kubernetes 1.13.1 docke ...

  7. Centos 7.4下 部署openstack Queens 计算节点qemu高版本问题

    sed -i 's/$contentdir/centos/g' /etc/yum.repos.d/CentOS-QEMU-EV.repo 这样既可正常安装compute服务

  8. HyperLedger Fabric 1.4 单机单节点部署(10.2)

    单机单节点指在一台电脑上部署一个排序(Orderer)服务.一个组织(Org1),一个节点(Peer,属于Org1),然后运行官方案例中的example02智能合约例子,实现转财交易和查询功能.单机单 ...

  9. kubernetes环境部署单节点redis

    kubernetes部署redis数据库(单节点) redis简介 Redis 是我们常用的非关系型数据库,在项目开发.测试.部署到生成环境时,经常需要部署一套 Redis 来对数据进行缓存.这里介绍 ...

随机推荐

  1. Jmeter之BeanShell

    在Jmeter中各种分类组件中都有相应的BeanShell组件,这里简单的说明一下Beanshell的使用. 一.概念 BeanShell是一种符合Java语法的脚本语言,也有自己的一些特定语法 二. ...

  2. 鲜贝7.3--postman安装

    Postman电脑客户端安装: Postman的安装非常简单,在windows系统只需要双击安装包,然后什么都不需要操作,它直接就自己完成了,如下图.如果是mac 也是跟普通软件的安装方法相同.在初次 ...

  3. angular父子组件传值和ngOnChanges的使用

    父组件中定义:  public detailbaseinfo = {}; //详情基本信息 其中detailbaseinfo 数据会通过请求获取 父组件传值给子组件如下: 子组件接收父组件传值 imp ...

  4. 洛谷P3157 [CQOI2011]动态逆序对

    题目大意: 给定\(1\)到\(n\)的一个排列,按照给定顺序依次删除\(m\)个元素,计算每个元素删除之前整个序列的逆序对数量 基本套路:删边变加边 那么我们不就是求满足\(pos_i<pos ...

  5. 第02组 Beta冲刺(1/5)

    队名:無駄無駄 组长博客 作业博客 组员情况 张越洋 过去两天完成了哪些任务 初步任务分配 提交记录(全组共用) 接下来的计划 完善接口文档 还剩下哪些任务 学习软工的理论课 学习代码评估.测试 燃尽 ...

  6. Ubuntu18.4编译pmon,缺少makedepend和pmoncfg

    提示makedepend找不到解决方法:$ apt-cache search makedependxutils-dev - X Window System utility programs for d ...

  7. 【解决错误】Non-reversible reg-exp portion: '(?i'

    在将Django升级到2.1后,运行 Django 自带后台后,或 使用 redirect 方法,就一直报错:Non-reversible reg-exp portion: '(?i'. 错误一 Dj ...

  8. Wireshark使用入门

    目录 1. Wireshark介绍 1.1 客户端界面 1.2 Display Filter 的常用方法 1.3 界面上一些小TIPS 2. 使用Wireshark分析TCP三次握手过程 2.1 三次 ...

  9. MAT 4378 – MAT 5317, Analysis of categorical

    MAT 4378 – MAT 5317, Analysis of categorical data, Assignment 3 1MAT 4378 – MAT 5317, Analysis of ca ...

  10. 【UOJ#75】【UR #6】智商锁(矩阵树定理,随机)

    [UOJ#75][UR #6]智商锁(矩阵树定理,随机) 题面 UOJ 题解 这种题我哪里做得来啊[惊恐],,, 题解做法:随机\(1000\)个点数为\(12\)的无向图,矩阵树定理算出它的生成树个 ...