Skip to content

Commit 604f068

Browse files
authored
Merge pull request #306 from gbraad/update-readme
Add loadbalancer entries and openstack command to README
2 parents 268f22a + b0e797d commit 604f068

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

README.adoc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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)
221223
git 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'
224230
heat 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+
229244
The ``node_count`` parameter specifies how many compute nodes you
230245
want to deploy. In the example above, we will deploy one master, one infra node
231246
and two compute nodes.

0 commit comments

Comments
 (0)