参考链接:

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. apache 基本配置

    1.1 ServerRoot 配置 [ServerRoot "" 主要用于指定Apache的安装路径,此选项参数值在安装Apache时系统会自动把Apache的路径写入.Windo ...

  2. 恕我直言,我也是才知道ElasticSearch条件更新是这么玩的

    背景 ElasticSearch 的使用度越来越普及了,很多公司都在使用.有做日志搜索的,有做商品搜索的,有做订单搜索的. 大部分使用场景都是通过程序定期去导入数据到 ElasticSearch 中, ...

  3. PHP popen() 函数

    定义和用法 popen() 函数使用 command 参数打开进程文件指针. 如果出错,该函数返回 FALSE. 语法 popen(command,mode) 参数 描述 command 必需.规定要 ...

  4. PHP imagecolorclosest - 取得与指定的颜色最接近的颜色的索引值

    imagecolorclosest — 取得与指定的颜色最接近的颜色的索引值.高佣联盟 www.cgewang.com 语法 int imagecolorclosest ( resource $ima ...

  5. PHP convert_cyr_string() 函数

    实例 把字符串由一种字符集转换成另一种: <?php$str = "Hello world! æøå";echo $str . "<br>"; ...

  6. 数据结构C语言实现----直接插入排序

    直接插入排序(简单插入排序) 给定一个数字串:2 6 7 8 9 3 2 3 4 按从小到大的顺序排列输出 首先把第一个数字放到一个小组里:(2)6 7 8 9 3 2 3 4 让后从第二个数字开始往 ...

  7. C/C++编程笔记:C语言基础printf()和scanf()函数,大学入门知识

    在解释这两个函数之前,为了方便大家更容易理解,我们先来讲讲下面的这幅图. ​ 这个图中的例子其实很简单,我们就是把题目通过输入设备(例如键盘鼠标)传输到计算机中,然后让计算机进行运算得出结果,再然后把 ...

  8. luogu P4632 [APIO2018] New Home 新家 线段树 set 二分

    写了一种比较容易理解 但是常数很大的sol. 容易发现可以扫描线. 维护好序列之后发现很难查距离 考虑二分. 这里二分可以在线段树上进行 当然可能存在一些问题 如果离散化的话需要处理一些比较麻烦的细节 ...

  9. com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'user'

    nested exception is com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'user' 可能错误原因: ...

  10. 019_go语言中的方法

    代码演示 package main import "fmt" type rect struct { width, heigh int } func (r *rect) area() ...