Skip to content

Instantly share code, notes, and snippets.

@gilangvperdana
Created May 6, 2022 00:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gilangvperdana/e7e62733a945b6a2d05be08fc043c0d1 to your computer and use it in GitHub Desktop.
Save gilangvperdana/e7e62733a945b6a2d05be08fc043c0d1 to your computer and use it in GitHub Desktop.
DevStack with Magnum & Heat local.conf Template

DevStack with Magnum & Heat local.conf Template

Installaion

Provisioning with DevStack can be seen Here

Local.conf Configuration

nano local.conf
[[local|localrc]]

HOST_IP=10.88.88.19 # set this to your IP
FLAT_INTERFACE=eth0 # change this to your eth0

MULTI_HOST=1

DATABASE_PASSWORD=Passw0rd
RABBIT_PASSWORD=Passw0rd
SERVICE_PASSWORD=Passw0rd
SERVICE_TOKEN=Passw0rd
ADMIN_PASSWORD=Passw0rd

OPENSTACK_VERSION=ocata

CINDER_BRANCH=stable/$OPENSTACK_VERSION
CEILOMETER_BRANCH=stable/$OPENSTACK_VERSION
GLANCE_BRANCH=stable/$OPENSTACK_VERSION
HEAT_BRANCH=stable/$OPENSTACK_VERSION
HORIZON_BRANCH=stable/$OPENSTACK_VERSION
KEYSTONE_BRANCH=stable/$OPENSTACK_VERSION
NEUTRON_BRANCH=stable/$OPENSTACK_VERSION
NOVA_BRANCH=stable/$OPENSTACK_VERSION
SWIFT_BRANCH=stable/$OPENSTACK_VERSION
ZAQAR_BRANCH=stable/$OPENSTACK_VERSION
MAGNUM_BRANCH=stable/$OPENSTACK_VERSION

# run the services you want to use
ENABLED_SERVICES=rabbit,mysql,key
ENABLED_SERVICES+=,g-api,g-reg
ENABLED_SERVICES+=,n-cpu,n-api,n-crt,n-obj,n-cond,n-sch,n-novnc,n-cauth
ENABLED_SERVICES+=,neutron,q-svc,q-agt,q-dhcp,q-meta,q-l3
ENABLED_SERVICES+=,cinder,c-sch,c-api,c-vol
ENABLED_SERVICES+=,horizon
ENABLED_SERVICES+=,heat,h-api,h-api-cfn,h-api-cw,h-eng

enable_service placement-api

DOWNLOAD_DEFAULT_IMAGES=False

CINDER_LVM_TYPE=thin
CINDER_VOLUME_CLEAR=none

# disabled services
disable_service n-net

enable_plugin magnum https://github.com/openstack/magnum $MAGNUM_BRANCH
enable_plugin magnum-ui https://github.com/openstack/magnum-ui $HORIZON_BRANCH
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment