File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -170,6 +170,8 @@ parameters:
170170 infra_flavor: m1.medium
171171 node_image: centos72
172172 node_flavor: m1.medium
173+ loadbalancer_image: centos72
174+ loadbalancer_flavor: m1.medium
173175
174176 # Set an existing network for inbound and outbound traffic
175177 external_network: public
@@ -219,13 +221,26 @@ EOF
219221```bash
220222# retrieve the Heat template (if you haven't yet)
221223git clone https://github.com/redhat-openstack/openshift-on-openstack.git
224+ ```
225+
226+ After this you can deploy using the heat command
222227
228+ ```bash
223229# create a stack named 'my-openshift'
224230heat stack-create my-openshift -t 180 \
225231 -e openshift_parameters.yaml \
226232 -f openshift-on-openstack/openshift.yaml
227233```
228234
235+ or using the generic OpenStack client
236+
237+ ```
238+ # create a stack named 'my-openshift'
239+ openstack stack create --timeout 180 \ 1
240+ -e openshift_parameters.yaml \
241+ -t openshift-on-openstack/openshift.yaml my-openshift
242+ ```
243+
229244The ``node_count`` parameter specifies how many compute nodes you
230245want to deploy. In the example above, we will deploy one master, one infra node
231246and two compute nodes.
You can’t perform that action at this time.
0 commit comments