参考链接:

kolla快速集成openstack-ocata和opencontrail-4.0.1.0单节点

https://github.com/Juniper/contrail-docker/wiki/OpenContrail-Kolla

http://nakadaisuke.blogspot.com/2017/10/kolla-openstack-ocata-open-contrail40.html

docker images 下载:

[root@wangjq kolla]# cat ocata_4.0.0.sh
#!/usr/bin/bash image_tag=4.0. # delete images
#docker images | awk '{print $3}' | xargs docker rmi -f # pull public images
for public_images in memcached kolla-toolbox cron mariadb rabbitmq keepalived haproxy chrony etcd
do
docker pull kolla/centos-source-$public_images:$image_tag
done # pull log manage images
for log_images in fluentd elasticsearch kibana
do
docker pull kolla/centos-source-$log_images:$image_tag
done # pull nova
for nova in nova-ssh nova-placement-api placement-api nova-api nova-consoleauth nova-serialproxy nova-scheduler nova-novncproxy nova-conductor nova-compute nova-libvirt
do
docker pull kolla/centos-source-$nova:$image_tag
done # pull keystone
for keystone in keystone-ssh keystone-fernet keystone
do
docker pull kolla/centos-source-$keystone:$image_tag
done # pull glance
docker pull kolla/centos-source-glance-api:$image_tag
docker pull kolla/centos-source-glance-registry:$image_tag # pull cinder
for cinder in cinder-volume cinder-api cinder-backup cinder-scheduler
do
docker pull kolla/centos-source-$cinder:$image_tag
done # pull neutron
for neutron in neutron-server neutron-dhcp-agent neutron-l3-agent neutron-openvswitch-agent neutron-metadata-agent neutron-lbaas-agent neutron-sfc-agent neutron-bgp-dragent
do
docker pull kolla/centos-source-$neutron:$image_tag
done # pull openvswitch
docker pull kolla/centos-source-openvswitch-vswitchd:$image_tag
docker pull kolla/centos-source-openvswitch-db-server:$image_tag # pull horizon
docker pull kolla/centos-source-horizon:$image_tag # pull heat
for heat in heat-api heat-api-cfn heat-engine
do
docker pull kolla/centos-source-$heat:$image_tag
done # pull ceph
for ceph in ceph-mon ceph-osd ceph-mgr cephfs-fuse ceph-rgw ceph-mds
do
docker pull kolla/centos-source-$ceph:$image_tag
done # pull zun
for zun in zun-api zun-compute zun-wsproxy
do
docker pull kolla/centos-source-$zun:$image_tag
done # pull magnum
for magnum in magnum-api magnum-conductor
do
docker pull kolla/centos-source-$magnum:$image_tag
done # pull kuryr
docker pull kolla/centos-source-kuryr-libnetwork:$image_tag # pull cloudkitty
for cloudkitty in cloudkitty-api cloudkitty-processor
do
docker pull kolla/centos-source-$cloudkitty:$image_tag
done # pull grafana influxdb telegraf
for monitor in grafana influxdb telegraf
do
docker pull kolla/centos-source-$monitor:$image_tag
done # pull mistral
for mistral in mistral-api mistral-engine mistral-executor mistral-event-engine
do
docker pull kolla/centos-source-$mistral:$image_tag
done # pull aodh
for aodh in aodh-api aodh-evaluator aodh-listener aodh-notifier
do
docker pull kolla/centos-source-$aodh:$image_tag
done # pull tempest
docker pull kolla/centos-source-tempest:$image_tag # pull ceilometer
for ceilometer in ceilometer-compute ceilometer-central ceilometer-notification
do
docker pull kolla/centos-source-$ceilometer:$image_tag
done # pull gnocchi
for gnocchi in gnocchi-statsd gnocchi-metricd gnocchi-api
do
docker pull kolla/centos-source-$gnocchi:$image_tag
done # pull senlin
for senlin in senlin-engine senlin-api
do
docker pull kolla/centos-source-$senlin:$image_tag
done # pull manila
for manila in manila-data manila-share manila-scheduler manila-api
do
docker pull kolla/centos-source-$manila:$image_tag
done # pull trove
for trove in trove-taskmanager trove-conductor trove-api
do
docker pull kolla/centos-source-$trove:$image_tag
done # pull redis
for redis in redis redis-sentinel
do
docker pull kolla/centos-source-$redis:$image_tag
done # pull tacker
for tacker in tacker-server tacker-conductor
do
docker pull kolla/centos-source-$tacker:$image_tag
done # pull panko-api
docker pull kolla/centos-source-panko-api:$image_tag # pull kafka
docker pull kolla/centos-source-kafka:$image_tag # pull zookeeper
docker pull kolla/centos-source-zookeeper:$image_tag # pull barbican
for barbican in barbican-api barbican-keystone-listener barbican-worker
do
docker pull kolla/centos-source-$barbican:$image_tag
done # pull freezer
for freezer in freezer-api freezer-scheduler
do
docker pull kolla/centos-source-$freezer:$image_tag
done # pull solum
for solum in solum-api solum-deployer solum-conductor solum-worker
do
docker pull kolla/centos-source-$solum:$image_tag
done # pull karbor
for karbor in karbor-api karbor-protection karbor-operationengine
do
docker pull kolla/centos-source-$karbor:$image_tag
done # pull searchlight
for searchlight in searchlight-api searchlight-listener
do
docker pull kolla/centos-source-$searchlight:$image_tag
done

kolla快速集成openstack-ocata和opencontrail-4.0.1.0单节点的更多相关文章

  1. [译] OpenStack Ocata 版本中的 53 个新功能盘点

    原文链接:https://www.mirantis.com/blog/53-new-things-to-look-for-in-openstack-ocata/ 原文作者:Nick Chase, Ra ...

  2. 理解 OpenStack + Ceph (5):OpenStack 与 Ceph 之间的集成 [OpenStack Integration with Ceph]

    理解 OpenStack + Ceph 系列文章: (1)安装和部署 (2)Ceph RBD 接口和工具 (3)Ceph 物理和逻辑结构 (4)Ceph 的基础数据结构 (5)Ceph 与 OpenS ...

  3. Fuel 30 分钟快速安装OpenStack

    一直以来,对于openstack 的初学者来讲,安装往往是入门的头大难题.在E版本之前,要搭建一个基本能用的openstack 环境那是相当麻烦,自己要装机,自己搞源,自己照着文档敲命令,又没有靠谱的 ...

  4. kolla-ansible安装openstack(Ocata)

    基本功能部署 基础环境 角色 操作系统 硬件配置 Depoly CentOS 7 Server 磁盘:40GB 内存:8GB 网卡:ens3(内网) ens4(外网) Sched CentOS 7 S ...

  5. CentOS RDO方式快速安装OpenStack

    一.了解RDO RDO是什么? RDO是红帽Red Hat Enterprise Linux OpenStack Platform的社区版,类似RHEL和Fedora,RHEV和oVirt这样的关系. ...

  6. 快速集成iOS基于RTMP的视频推流

    前言 这篇blog是iOS视频直播初窥:<喵播APP>的一个补充. 因为之前传到github上的项目中没有集成视频的推流.有很多朋友简信和微博上问我推流这部分怎么实现的. 所以, 我重新集 ...

  7. 快速集成图片浏览器快速集成图片浏览器->MJPhotoBrowser的使用

    介绍: 一个比较完整的图片浏览器,高仿了新浪微博的图片浏览效果,功能包括:下载浏览互联网图片,点击缩略图全屏显示图片.当加载较大图片时会出现圆形进度条,滑动浏览所有图片.保存图片到本地相册.GIF图片 ...

  8. 一分钟快速入门openstack

    一.它是什么,能干什么想认识一个事物,必须先弄明白它是什么,能干什么.首先说一下,openstack是一个搭建云平台的一个解决方案,说他不是个软件,但是我觉得说是一个软件,能够让大家认识更清晰些.op ...

  9. iOS简单快速集成Cordova

    如果你对于什么是Cordova还不了解,可以先移步到我另一个文章:Cordoval在iOS中的运用整理 里面有详细的介绍跟如何搭建Cordova:而本文则是要介绍JiaCordova插件,如果你有一点 ...

随机推荐

  1. Spring Security 实战干货:从零手写一个验证码登录

    1. 前言 前面关于Spring Security写了两篇文章,一篇是介绍UsernamePasswordAuthenticationFilter,另一篇是介绍 AuthenticationManag ...

  2. XML--概念、约束、解析

    概念 XML:可扩展标记语言 HTML:超文本标记语言 两者的区别: 1.语法结构类似,单语法要求不同 HTML不区分大小写,XML严格区分大小写 在HTML中,有时不严格,如果上下文清楚地显示出段落 ...

  3. Python之filter、map、reduce函数

    简介三函数: 高阶函数:一个函数可以接收另一个函数作为参数,这种函数称之为高阶函数. filter.map.reduce三个函数都是高阶函数,且语法都一致:filter/map/reduce(func ...

  4. JS的执行上下文

    定义 执行上下文时是代码执行时的环境,JS代码在运行前进行编译,那么会生成两部分,一部分是可执行的代码,而另一部分则是执行上下文. 发展 执行上下文所包含的内容是在不断的变化的.它主要分为了三个不同的 ...

  5. 做完这套面试题,你才敢说懂Excel

    下面的题目来自一份商品专员的面试题,其中有涉及到条件格式.自定义排序.数据验证制作下拉菜单.查找引用类函数.文本提取函数等等技能. 满满的干货技能可不是商品专员“专属”,如果你能熟练掌握,在平日工作中 ...

  6. Android性能优化----卡顿优化

    前言 无论是启动,内存,布局等等这些优化,最终的目的就是为了应用不卡顿.应用的体验性好坏,最直观的表现就是应用的流畅程度,用户不知道什么启动优化,内存不足,等等,应用卡顿,那么这个应用就不行,被卸载的 ...

  7. Miller-Rabin素数测试算法

    用来干嘛的 ​   要判断一个数 \(n\) 是否为素数,最朴素直接的办法是以\(O(\sqrt n)\) 时间复杂度地从2到 \(\sqrt n\) 循环即可得到最准确的结果.但是如果在 \(n\) ...

  8. “随手记”开发记录day13

    今天继续对我们的项目进行更改. 今天我们需要做的是增加“修改”功能.对于已经添加的记账记录,长按可以进行修改和删除的操作. 但是今天并没有完成……

  9. C语言学习笔记之一个程序弄清&&、||、i++、++i

     由此程序可以看出, ++a是先执行自加,再把值赋值给c,所以c就是a+1=10+1=11 b++是先做赋值运算,也就是先d=b,再b自加,所以d=b(原先)=5 a和b都执行自加,所以a=11,b= ...

  10. Kubernetes 使用arthas进行调试

    环境 因为k8s中是最基本的jre,网上说缺少tools.jar,但是补充了以后还是不行,最后还是将整个jdk给移到容器中的. jre中执行: /home # /opt/jre/bin/java -j ...