File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ set -ex
1818EDPM_COMPUTE_CEPH_ENABLED=${EDPM_COMPUTE_CEPH_ENABLED:- true}
1919COMPUTE_DRIVER=${COMPUTE_DRIVER:- " libvirt" }
2020INTERFACE_MTU=${INTERFACE_MTU:- 1500}
21+ BARBICAN_ENABLED=${BARBICAN_ENABLED:- true}
2122MANILA_ENABLED=${MANILA_ENABLED:- true}
2223
2324# Use the files created in the previous steps including the network_data.yaml file and thw deployed_network.yaml file.
4041# Create standalone_parameters.yaml file and deploy standalone OpenStack using the following commands.
4142cat << EOF > standalone_parameters.yaml
4243parameter_defaults:
44+ BarbicanSimpleCryptoGlobalDefault: true
4345 CloudName: $CTLPLANE_IP
4446 Debug: true
4547 DeploymentUser: $USER
@@ -96,6 +98,10 @@ if [ "$COMPUTE_DRIVER" = "ironic" ]; then
9698 ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/services/ironic-overcloud.yaml"
9799 ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/services/ironic-inspector.yaml"
98100fi
101+ if [ " $BARBICAN_ENABLED " = " true" ]; then
102+ ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/services/barbican.yaml"
103+ ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/barbican-backend-simple-crypto.yaml"
104+ fi
99105if [ " $MANILA_ENABLED " = " true" ]; then
100106 ENV_ARGS+=" -e /usr/share/openstack-tripleo-heat-templates/environments/manila-cephfsnative-config.yaml"
101107fi
You can’t perform that action at this time.
0 commit comments