Best localrc for devstack

本文提供了一套全面的DevOps实践与云计算配置教程,包括环境变量设置、资源分配、服务启动与管理等关键步骤,旨在帮助开发者高效部署与维护云上应用。

I simply collected all my localrc files, Feel free to grab the parts that interest you.

1, my env variables

export OS_USERNAME=admin
export OS_PASSWORD=password
export OS_TENANT_NAME=demo
export OS_AUTH_URL=http://172.16.1.122:5000/v2.0
export OS_AUTH_STRATEGY=keystone

2, localrc file

# Common
DEST=/opt/stack
#OFFLINE=true
## the ip of ovs bridge br-phy is 172.16.1.122
HOST_IP=172.16.1.122
SERVICE_HOST=$HOST_IP
CONTROL_HOST=$HOST_IP
QPID_HOST=$HOST_IP
FIXED_RANGE=10.0.1.0/24
#113 — 118, http://jodies.de/ipcalc
FLOATING_RANGE=192.168.1.112/29
Q_FLOATING_ALLOCATION_POOL=start=192.168.1.113,end=192.168.1.118
NETWORK_GATEWAY=10.0.1.1
PUBLIC_NETWORK_GATEWAY=192.168.1.1

# Misc
DATABASE_USER=root
DATABASE_PASSWORD=password
ADMIN_PASSWORD=password
SERVICE_PASSWORD=password
SERVICE_TOKEN=ADMIN
RABBIT_PASSWORD=password

# For Keystone, UUID or PKI
KEYSTONE_TOKEN_FORMAT=UUID

# For Swift
SWIFT_REPLICAS=1
SWIFT_HASH=ADMIN

# Enable Logging
LOGFILE=$DEST/logs/stack.log
VERBOSE=True
LOG_COLOR=True
SCREEN_LOGDIR=$DEST/logs

# Pre-requisite
ENABLED_SERVICES=qpid,mysql,horizon,key,g-api,g-reg

# Nova – Compute Service
ENABLED_SERVICES+=,n-api,n-crt,n-obj,n-cpu,n-cond,n-sch
#IMAGE_URLS+=”,https://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img”
#ENABLED_SERVICES+=,n-cell

# Swift – Object Storage
ENABLED_SERVICES+=,s-proxy,s-object,s-container,s-account

# Neutron – Neutron L2/L3 Connection Service
ENABLED_SERVICES+=,q-svc,q-agt,q-dhcp,q-l3,q-meta,neutron

## Neutron – Neutron L4/L7 Network Service
ENABLED_SERVICES+=,q-lbaas,q-fwaas

# Neutron Agent
#Q_AGENT=linuxbridge
Q_USE_NAMESPACE=False
Q_ALLOW_OVERLAPPING_IP=False
OVS_PHYSICAL_BRIDGE=br-phy

# VLAN configuration
Q_PLUGIN=ml2
ENABLE_TENANT_VLANS=True

# GRE and VXLAN tunnel configuration
Q_PLUGIN=ml2
ENABLE_TENANT_TUNNELS=True
Q_ML2_TENANT_NETWORK_TYPE=local,flat,vlan,gre,vxlan
Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,linuxbridge

# Cinder – Block Device Service
ENABLED_SERVICES+=,cinder,c-api,c-vol,c-sch

# Heat – Orchestration Service
#ENABLED_SERVICES+=,heat,h-api,h-api-cfn,h-api-cw,h-eng
#IMAGE_URLS+=”,http://fedorapeople.org/groups/heat/prebuilt-jeos-images/F17-x86_64-cfntools.qcow2″

# Ceilometer – Metering Service (metering + alarming)
#ENABLED_SERVICES+=,ceilometer-acompute,ceilometer-acentral,ceilometer-collector,ceilometer-api
#ENABLED_SERVICES+=,ceilometer-alarm-notify,ceilometer-alarm-eval

# Apache fronted for WSGI
APACHE_ENABLED_SERVICES+=keystone,swift

# Multi-host
MULTI_HOST=False
MYSQL_HOST=$CONTROL_HOST
RABBIT_HOST=$CONTROL_HOST
GLANCE_HOSTPORT=$CONTROL_HOST:9292

#HORIZON_REPO=https://github.com/openstack/horizon
#HORIZON_BRANCH=stable/grizzly

#CINDER_REPO=https://github.com/openstack/cinder.git
#CINDER_BRANCH=stable/grizzly
#CINDERCLIENT_REPO=https://github.com/openstack/python-cinderclient.git
#CINDERCLIENT_BRANCH=stable/grizzly

#NOVA_REPO=https://github.com/openstack/nova.git
#NOVA_BRANCH=stable/grizzly
#NOVACLIENT_REPO=https://github.com/openstack/python-novaclient.git
#NOVACLIENT_BRANCH=stable/grizzly

#GLANCE_REPO=https://github.com/openstack/glance.git
#GLANCE_BRANCH=stable/grizzly
#GLANCECLIENT_REPO=https://github.com/openstack/python-glanceclient.git

#KEYSTONE_REPO=https://github.com/openstack/keystone.git
#KEYSTONE_BRANCH=stable/grizzly
#KEYSTONECLIENT_REPO=https://github.com/openstack/python-keystoneclient.git
#KEYSTONECLIENT_BRANCH=stable/grizzly

#NEUTRON_REPO=https://github.com/openstack/neutron.git
#NEUTRON_BRANCH=stable/grizzly
#NEUTRONCLIENT_REPO=https://github.com/openstack/python-neutronclient.git
#NEUTRONCLIENT_BRANCH=stable/grizzly

HEAT_REPO=https://github.com/sjcorbett/heat.git
#HEAT_BRANCH=master

 

3, devstack will run following processes based on above localrc

keystone-all –config-file /etc/keystone/keystone.conf –log-config /etc/keystone/logging.conf -d –debug

glance-registry –config-file=/etc/glance/glance-registry.conf
glance-api –config-file=/etc/glance/glance-api.conf

neutron-server –config-file /etc/neutron/neutron.conf –config-file /etc/neutron/plugins/ml2/ml2_conf.ini
neutron-dhcp-agent –config-file /etc/neutron/neutron.conf –config-file=/etc/neutron/dhcp_agent.ini
neutron-l3-agent –config-file /etc/neutron/neutron.conf –config-file=/etc/neutron/l3_agent.ini –config-file /etc/neutron/fwaas_driver.ini
neutron-metadata-agent –config-file /etc/neutron/neutron.conf –config-file=/etc/neutron/metadata_agent.ini
neutron-lbaas-agent –config-file /etc/neutron/neutron.conf –config-file=/etc/neutron/services/loadbalancer/haproxy/lbaas_agent.ini

nova-api
nova-conductor
nova-compute –config-file /etc/nova/nova.conf
nova-cert
nova-scheduler –config-file /etc/nova/nova.conf
nova-objectstore

cinder-api –config-file /etc/cinder/cinder.conf
cinder-scheduler –config-file /etc/cinder/cinder.conf
cinder-volume –config-file /etc/cinder/cinder.conf

hswift-container-updater /etc/swift/container-server/1.conf
swift-account-auditor /etc/swift/account-server/1.conf
swift-object-replicator /etc/swift/object-server/1.conf
swift-container-replicator /etc/swift/container-server/1.conf
swift-object-auditor /etc/swift/object-server/1.conf
swift-container-auditor /etc/swift/container-server/1.conf
swift-account-replicator /etc/swift/account-server/1.conf
swift-account-reaper /etc/swift/account-server/1.conf
swift-container-sync /etc/swift/container-server/1.conf
swift-object-updater /etc/swift/object-server/1.conf
swift-object-auditor /etc/swift/object-server/1.conf

【完美复现】面向配电网韧性提升的移动储能预布局与动态调度策略【IEEE33节点】(Matlab代码实现)内容概要:本文介绍了基于IEEE33节点的配电网韧性提升方法,重点研究了移动储能系统的预布局与动态调度策略。通过Matlab代码实现,提出了一种结合预配置和动态调度的两阶段优化模型,旨在应对电网故障或极端事件时快速恢复供电能力。文中采用了多种智能优化算法(如PSO、MPSO、TACPSO、SOA、GA等)进行对比分析,验证所提策略的有效性和优越性。研究不仅关注移动储能单元的初始部署位置,还深入探讨其在故障发生后的动态路径规划与电力支援过程,从而全面提升配电网的韧性水平。; 适合人群:具备电力系统基础知识和Matlab编程能力的研究生、科研人员及从事智能电网、能源系统优化等相关领域的工程技术人员。; 使用场景及目标:①用于科研复现,特别是IEEE顶刊或SCI一区论文中关于配电网韧性、应急电源调度的研究;②支撑电力系统在灾害或故障条件下的恢复力优化设计,提升实际电网应对突发事件的能力;③为移动储能系统在智能配电网中的应用提供理论依据和技术支持。; 阅读建议:建议读者结合提供的Matlab代码逐模块分析,重点关注目标函数建模、约束条件设置以及智能算法的实现细节。同时推荐参考文中提及的MPS预配置与动态调度上下两部分,系统掌握完整的技术路线,并可通过替换不同算法或测试系统进一步拓展研究。
先看效果: https://pan.quark.cn/s/3756295eddc9 在C#软件开发过程中,DateTimePicker组件被视为一种常见且关键的构成部分,它为用户提供了图形化的途径来选取日期与时间。 此类控件多应用于需要用户输入日期或时间数据的场景,例如日程管理、订单管理或时间记录等情境。 针对这一主题,我们将细致研究DateTimePicker的操作方法、具备的功能以及相关的C#编程理念。 DateTimePicker控件是由.NET Framework所支持的一种界面组件,适用于在Windows Forms应用程序中部署。 在构建阶段,程序员能够通过调整属性来设定其视觉形态及运作模式,诸如设定日期的显示格式、是否展现时间选项、预设的初始值等。 在执行阶段,用户能够通过点击日历图标的下拉列表来选定日期,或是在文本区域直接键入日期信息,随后按下Tab键或回车键以确认所选定的内容。 在C#语言中,DateTime结构是处理日期与时间数据的核心,而DateTimePicker控件的值则表现为DateTime类型的实例。 用户能够借助`Value`属性来读取或设定用户所选择的日期与时间。 例如,以下代码片段展示了如何为DateTimePicker设定初始的日期值:```csharpDateTimePicker dateTimePicker = new DateTimePicker();dateTimePicker.Value = DateTime.Now;```再者,DateTimePicker控件还内置了事件响应机制,比如`ValueChanged`事件,当用户修改日期或时间时会自动激活。 开发者可以注册该事件以执行特定的功能,例如进行输入验证或更新关联的数据:``...
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值