Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 993a8ab

Browse files
committed
Update links in README
1 parent 9805295 commit 993a8ab

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

‎README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
# Deploy a React application on Kubernetes
44

5-
Do you have a front end application that contains large amounts of duplication, handles complex states, and manages large amounts of data?
5+
Do you have a front end application that contains large amounts of duplication, handles complex states, and manages large amounts of data?
66

77
React and Redux is the perfect Javascript library if your application is similar to the one described above. React provides a component based structure for everything included in an application and allows abstraction if needed to limit duplication. With Redux, it handles all of the state and can easily manage data in an application.
88

99
Once an application has been developed, it needs to be deployed for the rest of the world to see. There are many choices when looking for the right solution to manage and deploy your application. It can often be overwhelming when you're trying to pick the right solution.
1010

11-
If you're looking for a deployment tool that can provide automation, scalability and management of a deployed application, Kubernetes is the tool for you!
11+
If you're looking for a deployment tool that can provide automation, scalability and management of a deployed application, Kubernetes is the tool for you!
1212

1313
An application must be packaged into a container to deploy on Kubernetes. Docker is an open source tool that is used to package the application into a container. The container is then deployed on Kubernetes for public access. Once the application is deployed, Kubernetes handles the management, scalability and automation of the deployed application.
1414

@@ -24,7 +24,7 @@ When the reader has completed this Code Pattern, they will understand how to:
2424

2525
![Flow](https://media.github.ibm.com/user/1650/files/b0c988dc-31aa-11e8-867b-9558d5610cd7)
2626

27-
1. The user accesses the application through the web interface. The user enters a movie title into the input.
27+
1. The user accesses the application through the web interface. The user enters a movie title into the input.
2828
2. The React application is rendered to the user on access.
2929
3. The application calls the OMDb API and receives a JSON object of the response to show the user.
3030

@@ -44,8 +44,8 @@ When the reader has completed this Code Pattern, they will understand how to:
4444
# Steps
4545

4646
## Prerequisites
47-
1. You must get an API key from [OMDb API](http://www.omdbapi.com/) in order to get a response from the API. You will insert your API key in `/src/actions/index.js` on line 42
48-
[OMDb API](http://www.omdbapi.com/) by Brian Fitz is licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/)
47+
1. You must get an API key from [OMDb API](https://www.omdbapi.com/) in order to get a response from the API. You will insert your API key in `/src/actions/index.js` on line 42
48+
[OMDb API](https://www.omdbapi.com/) by Brian Fitz is licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/)
4949

5050
2. Create an environment variable for your docker username
5151
```
@@ -66,7 +66,7 @@ $ git clone https://github.com/IBM/deploy-react-kubernetes
6666

6767
### 2. Run the application
6868
1. Install [Node.js](https://nodejs.org/en/)
69-
2. Run the following commands in a terminal:
69+
2. Run the following commands in a terminal:
7070

7171
```
7272
$ npm install
@@ -84,7 +84,7 @@ Verify app is running and working correctly.
8484

8585
## Prerequisites:
8686
1. [Create Docker account](https://cloud.docker.com/)
87-
87+
8888
2. [Install Docker CLI](https://docs.docker.com/install/)
8989

9090
3. [Retrieve and save your Docker user id](https://cloud.docker.com/)
@@ -118,13 +118,13 @@ You can now access the application at http://localhost:3000
118118
2. [Deploy the application](#2-deploy-the-application)
119119

120120
## Prerequisites
121-
1. [Create an account with IBM Cloud](https://console.bluemix.net/registration/)
121+
1. [Create an account with IBM Cloud](https://cloud.ibm.com/registration/)
122122

123-
2. [Install IBM Cloud CLI](https://console.bluemix.net/docs/cli/reference/bluemix_cli/get_started.html#getting-started)
123+
2. [Install IBM Cloud CLI](https://cloud.ibm.com/docs/cli/reference/bluemix_cli/get_started.html#getting-started)
124124

125125
3. Log into your IBM Cloud account
126126
```
127-
ibmcloud login
127+
ibmcloud login
128128
```
129129

130130
If you have a federated ID, use ibmcloud login --sso to log in to the IBM Cloud CLI.
@@ -161,18 +161,18 @@ $ ibmcloud cr namespace-add YOUR_NAMESPACE
161161

162162
### 1. Build image
163163

164-
Build image in the IBM Container Registry:
164+
Build image in the IBM Container Registry:
165165
```
166166
$ ibmcloud cr build -t registry.<ibm_cloud_region>.bluemix.net/<your_namespace>/deploy-react-kubernetes .
167167
```
168168

169169
### 2. Deploy the application
170170

171-
```
171+
```
172172
$ kubectl run deploy-react-kubernetes-deployment —-image=registry.<ibm_cloud_region>.bluemix.net/<your_namespace>/deploy-react-kubernetes
173173
```
174174

175-
To check how many pods are running on Kubernetes run the command:
175+
To check how many pods are running on Kubernetes run the command:
176176
```
177177
kubectl get pods
178178
```
@@ -199,7 +199,7 @@ You can now access the application at http://IP_ADDRESS:NODE_PORT
199199

200200
## Run the application on Kubernetes with a yaml file
201201

202-
Note: Follow the prerequisites in 'Run the application on Kubernetes section' before executing command below.
202+
Note: Follow the prerequisites in 'Run the application on Kubernetes section' before executing command below.
203203

204204
```
205205
kubectl create -f deployment.yaml
@@ -219,10 +219,10 @@ kubectl create -f deployment.yaml
219219

220220
# Learn more
221221

222-
* **Container Orchestration Code Patterns**: Enjoyed this Code Pattern? Check out our other [Container Orchestration Code Patterns](https://developer.ibm.com/code/technologies/container-orchestration/).
222+
* **Container Orchestration Code Patterns**: Enjoyed this Code Pattern? Check out our other [Container Orchestration Code Patterns](https://developer.ibm.com/solutions/container-orchestration-and-deployment/).
223223
* **Kubernetes on IBM Cloud**: Deliver your apps with the combined power of [Kubernetes and Docker on IBM Cloud](https://www.ibm.com/cloud/container-service)
224224

225225
# License
226-
This code pattern is licensed under the Apache Software License, Version 2. Separate third party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the [Developer Certificate of Origin, Version 1.1 (DCO)](https://developercertificate.org/) and the [Apache Software License, Version 2](http://www.apache.org/licenses/LICENSE-2.0.txt).
226+
This code pattern is licensed under the Apache Software License, Version 2. Separate third party code objects invoked within this code pattern are licensed by their respective providers pursuant to their own separate licenses. Contributions are subject to the [Developer Certificate of Origin, Version 1.1 (DCO)](https://developercertificate.org/) and the [Apache Software License, Version 2](https://www.apache.org/licenses/LICENSE-2.0.txt).
227227

228-
[Apache Software License (ASL) FAQ](http://www.apache.org/foundation/license-faq.html#WhatDoesItMEAN)
228+
[Apache Software License (ASL) FAQ](https://www.apache.org/foundation/license-faq.html#WhatDoesItMEAN)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /