Skip to content

Commit e829988

Browse files
committed
Updated client README.
1 parent 376ca39 commit e829988

2 files changed

Lines changed: 31 additions & 35 deletions

File tree

client/README.rst

Lines changed: 28 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Registration will discover SSH keys automatically and use the
8686
$ deis register http://my-deis-controller.fqdn
8787
username: myuser
8888
password:
89+
password (confirm):
8990
email: myuser@example.com
9091
Registered myuser
9192
Logged in as myuser
@@ -101,60 +102,55 @@ Registration will discover SSH keys automatically and use the
101102
102103
Find an application you’d like to deploy, or clone `an example app`_.
103104

104-
Change into the application directory and use ``deis create`` to initialize
105-
a new formation in a specific EC2 region.
105+
Change into the application directory and use ``deis formations:create`` to
106+
initialize a new formation in a specific EC2 region.
106107

107-
Use the ``deis layers:scale`` command to provision nodes that will be
108+
Use the ``deis nodes:scale`` command to provision nodes that will be
108109
dedicated to this formation.
109110

111+
Then create an application that references the formation::
112+
110113
.. code-block:: console
111114
112115
$ cd <my-application-repo>
113-
$ deis create --flavor=ec2-us-west-2
114-
Creating formation... done, created peachy-waxworks
116+
$ deis create --formation=dev1
117+
Creating application... done, created nimbus-pamphlet
115118
Git remote deis added
116119
117-
Creating runtime layer... done
118-
Creating proxy layer... done
119-
120-
Use deis layers:scale proxy=1 runtime=1 to scale a basic formation
121-
122-
$ deis layers:scale proxy=1 runtime=1
123-
Scaling layers... but first, coffee!
124-
...done in 232s
125-
126-
Use `git push deis master` to deploy to your formation
127-
128-
129120
Use ``git push deis master`` to deploy your application.
130121

131122
Deis will automatically deploy Docker containers and configure Nginx proxies
132123
to route requests to your application.
133124

134125
.. code-block:: console
135126
136-
$ git push deis master
137-
Counting objects: 146, done.
127+
(deis)flopsy:example-go matt$ git push deis master
128+
Counting objects: 13, done.
138129
Delta compression using up to 8 threads.
139-
Compressing objects: 100% (122/122), done.
140-
Writing objects: 100% (146/146), 21.54 KiB, done.
141-
Total 146 (delta 84), reused 47 (delta 22)
142-
Node.js app detected
143-
-----> Resolving engine versions
144-
Using Node.js version: 0.10.15
145-
Using npm version: 1.2.30
146-
...
147-
-----> Building runtime environment
130+
Compressing objects: 100% (11/11), done.
131+
Writing objects: 100% (13/13), 6.20 KiB | 0 bytes/s, done.
132+
Total 13 (delta 2), reused 0 (delta 0)
133+
Go app detected
134+
-----> Installing Go 1.1.2... done
135+
Installing Virtualenv... done
136+
Installing Mercurial... done
137+
Installing Bazaar... done
138+
-----> Running: go get -tags heroku ./...
148139
-----> Discovering process types
149140
Procfile declares types -> web
150141
151-
-----> Compiled slug size: 4.7 MB
142+
-----> Compiled slug size: 1.2 MB
152143
Launching... done, v2
153144
154-
-----> peachy-waxworks deployed to Deis
155-
http://ec2-198.51.100.36.us-west-2.compute.amazonaws.com ...
145+
-----> nimbus-pamphlet deployed to Deis
146+
http://ec2-198.51.100.22.us-west-2.compute.amazonaws.com
147+
148+
To learn more, use `deis help` or visit http://deis.io
149+
150+
To git@deis.mattboersma.com:nimbus-pamphlet.git
151+
* [new branch] master -> master
156152
157-
$ curl -s http://ec2-198.51.100.36.us-west-2.compute.amazonaws.com
153+
$ curl -s http://ec2-198.51.100.22.us-west-2.compute.amazonaws.com
158154
Powered by Deis!
159155
160156
To learn more, use ``deis help`` or browse `the documentation`_.

docs/releases.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ Other Repos
2828
Chef Repo
2929
---------
3030

31-
- merge master into release branch
32-
* create pull request from master to release branch
33-
* review and merge on github.com
31+
- checkout release branch
32+
- merge master into release branch locally
3433
- change chef attributes from master to latest tag in deis-cookbook/attributes
3534
* default.deis.build.revision
3635
* default.deis.gitosis.revision
3736
* default.deis.controller.revision
3837
- ``knife cookbook metadata .`` will update metadata.json
3938
- commit and push the opdemand/deis-cookbook repo
4039
* ``git commit -a -m 'updated for v0.0.X release'``
40+
* ``git push origin release``
4141
* ``git tag v0.0.X``
4242
* ``git push --tags origin v0.0.X``
4343
- update opscode community cookbook

0 commit comments

Comments
 (0)