Skip to content

Commit 9cdb695

Browse files
authored
Update ibmcloud.md
1 parent 4f605c6 commit 9cdb695

File tree

1 file changed

+12
-24
lines changed

1 file changed

+12
-24
lines changed

docs/getting-started/ibmcloud.md

+12-24
Original file line numberDiff line numberDiff line change
@@ -7,38 +7,26 @@ redirect_from:
77
- /docs/platforms/bluemix
88
---
99

10-
Node-RED is available on the IBM Cloud platform as one of the [boilerplate applications](#boilerplate-application)
10+
Node-RED is available on the IBM Cloud platform as one of the [Starter Kits applications](#starter-kit-application)
1111
in the catalog.
1212

1313
We also provide a '[Deploy To IBM Cloud](#deploy-to-ibm-cloud)' enabled repository.
1414

1515
---
1616

17-
### Boilerplate application
17+
### Starter Kit application
1818

19-
1. Log in or sign-up for an account at [bluemix.net](http://bluemix.net)
19+
1. Log in or sign-up for an account at [cloud.ibm.com](https://cloud.ibm.com)
2020

21-
2. Navigate to the catalog and [search for 'Node-RED'](https://console.ng.bluemix.net/catalog?search=Node-RED)
21+
2. Navigate to the catalog and [search for 'Node-RED'](https://cloud.ibm.com/catalog?search=node-red).
22+
This will present you with the **Node-RED Starter**. This gives you a Node-RED instance running as a Cloud Foundry
23+
application. It also provides a Cloudant database instance
24+
and a collection of nodes that make it easy to access various IBM Cloud services.
2225

23-
3. This will present you with two options:
24-
25-
1. **Node-RED Starter** - a vanilla Node-RED instance
26-
27-
2. **Internet of Things Platform Starter** - this gives you everything you need
28-
to start quickly using Node-RED with the Watson IoT Platform, including
29-
some default flows to show how things work
30-
31-
In both cases you will get:
32-
33-
- a Cloudant database instance to store your flow configuration
34-
- a collection of nodes that make it easy to access various Bluemix services, including
35-
both the Watson IoT platform and the Watson Cognitive services
36-
37-
4. Click the starter application you want to use, give it a name and click create.
26+
3. Click the starter application you want to use, give it a name and click create.
3827

3928
A couple of minutes later, you'll be able to access your instance of Node-RED at `https://<yourAppName>.mybluemix.net`
4029

41-
4230
#### Customising your Node-RED application
4331

4432
To start customising your instance of Node-RED, you can either download the application locally or you can enable the Continuous Delivery integration option via your application's IBM Cloud dashboard page. That will create a git repository on either GitHub or IBM DevOps services, from where you can customize your Node-RED, save the changes and automatically update the application in IBM Cloud.
@@ -69,15 +57,15 @@ add the required node modules in the `dependencies` section. The format is:
6957
The application's package.json is setup to grab the latest stable release of Node-RED.
7058
To trigger an upgrade following a new release being made available:
7159

72-
1. Per default [IBM Cloud maintains a cache directory](https://console.bluemix.net/docs/runtimes/nodejs/configurationOptions.html#cache_behavior) per node application, to store resolved dependencies so they are not downloaded and installed every time. For updates this cache should be disabled. Set the NODE_MODULES_CACHE environment variable to false. You can either do this on your application's IBM Cloud console page (Runtime -> Environment Variables), or by using the cf command-line:
60+
1. Applications running in the Cloud Foundry space of IBM Cloud maintain a cache directory per node application, to store resolved dependencies so they are not downloaded and installed every time the application is restaged. To update the dependencies, including the version of node-RED, this cache must be disabled. Set the NODE_MODULES_CACHE environment variable to false. You can either do this on your application's IBM Cloud console page (Runtime -> Environment Variables), or by using the cf command-line:
7361

7462
cf set-env [APPLICATION_NAME] NODE_MODULES_CACHE false
7563

7664
2. Trigger a restage of your application. This cannot be done using the IBM Cloud console, so the cf command-line should be used:
7765

7866
cf restage [APPLICATION_NAME]
7967

80-
3. If you are upgrade to Node-RED 0.20 or later, you **must** ensure your application is running on Node.js 8 or later. To do that, edit you application `package.json` file - see below for how to edit the file. Update the `engines` property to `8.x` if it is not currently set to that.
68+
3. If you are upgrade to Node-RED 0.20 or later, you **must** ensure your application is running on Node.js 10 or later. To do that, edit you application `package.json` file - see below for how to edit the file. Update the `engines` property to `10.x` if it is not currently set to that.
8169

8270
In order to edit the file, you must enable the Continuous Delivery integration
8371
option via your application's IBM Cloud dashboard page. That will create a git repository
@@ -97,13 +85,13 @@ root path, delete the `httpStatic` and `httpAdminRoot` entries in the `bluemix-s
9785

9886
### Deploy To IBM Cloud
9987

100-
The [Deploy To Bluemix enabled repository](https://github.com/node-red/node-red-bluemix-starter)
88+
The [Deploy To IBM Cloud enabled repository](https://github.com/node-red/node-red-bluemix-starter)
10189
lets you create your own customised Node-RED application that can then
10290
be deployed to IBM Cloud with a couple clicks.
10391

10492
You can try it out now by clicking here:
10593

106-
[![Deploy to IBM Cloud](https://bluemix.net/deploy/button.png)](https://bluemix.net/deploy?repository=https://github.com/node-red/node-red-bluemix-starter.git)
94+
[![Deploy to IBM Cloud](https://cloud.ibm.com/devops/setup/deploy/button.png)](https://bluemix.net/deploy?repository=https://github.com/ibmets/node-red-bluemix-starter.git)
10795

10896
When you click the button, you are taken to IBM Cloud where you get a pick a name
10997
for your application at which point the platform takes over, grabs the code from

0 commit comments

Comments
 (0)