4273c21af7
Add maintenance services as stx-metal plugin. Enable services by both node type and metal components. Target: Mtce services are installed and active(running) in devstack. Story: 2003161 Task: 23296 Change-Id: I2123c64fb1b70bd135e8945d7ff7f4f3691bdbcc Signed-off-by: Mingyuan Qi <mingyuan.qi@intel.com>
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
#!/bin/bash
|
|
# Devstack settings
|
|
|
|
# This plugin is to enable StarlingX stx-metal services and follows the
|
|
# devstack plugin contract:
|
|
# https://docs.openstack.org/devstack/latest/plugins.html#plugin-sh-contract
|
|
#
|
|
# Services can be seperatly enabled by node personality or components
|
|
# unless they are coupled in functionality(e.g. mtcAgent/mtcClient).
|
|
# Other flocks services sysinv/fm/sm/nfv required to bring up full
|
|
# functionality maintenance services.
|
|
#
|
|
# Current configuration supports All-in-One simplex mode.
|
|
|
|
STX_METAL_NAME=stx-metal
|
|
|
|
######### Plugin Specific ##########
|
|
# Enable service for node type
|
|
enable_service $STX_METAL_NAME mtce-compute mtce-control mtce-storage
|
|
|
|
# TODO:remove the services enabled by default once
|
|
# stx-metal is completely enabled
|
|
# Enable service for components
|
|
enable_service hbs mtce pmon rmon hwmon mtclog mtcalarm fsmon
|
|
|
|
# Be careful to enable hostw, it will restart your host
|
|
# if some config is not correct
|
|
#enable_service hostw
|
|
|
|
if is_service_enabled mtce-compute; then
|
|
# stx-update
|
|
enable_service tsconfig
|
|
fi
|
|
# run_process checks whether the service name is enabled or not
|
|
if is_service_enabled hbs; then
|
|
# enable hbsAgent/hbsClient service as part of hbs service
|
|
enable_service hbsAgent
|
|
enable_service hbsClient
|
|
fi
|
|
if is_service_enabled mtce; then
|
|
# enable mtcAgent/mtcClient service as part of mtce service
|
|
enable_service mtcAgent
|
|
enable_service mtcClient
|
|
fi
|
|
|
|
# Initial source of lib script
|
|
source $DEST/stx-metal/devstack/lib/stx-metal
|