Skip to content

Commit 76df201

Browse files
cvignolaJesusPaz
authored andcommitted
fix list formatting
1 parent a339a75 commit 76df201

File tree

2 files changed

+27
-27
lines changed

2 files changed

+27
-27
lines changed

docs/install/bluemix-setup.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
## IBM Cloud Container Service
1+
## Kubernetes on IBM Cloud
22

33
### Setup
44

55
#### Getting Started
66

77
Register and create a Lite Kubernetes cluster using the
8-
[IBM Cloud Container Service](https://www.ibm.com/cloud-computing/bluemix/containers).
8+
[IBM Bluemix Container Service](https://www.ibm.com/cloud-computing/bluemix/containers).
99

1010
#### Install IBM Cloud Tools
1111

@@ -21,10 +21,10 @@ See: [https://github.com/IBM-Bluemix/ibm-cloud-developer-tools](https://github.c
2121
#### Address Kubernetes Cluster
2222

2323
1. login
24-
```bash
25-
bx login -a api.ng.bluemix.net
26-
```
24+
```bash
25+
bx login -a api.ng.bluemix.net
26+
```
2727
1. export KUBECONFIG
28-
```bash
29-
bx cs cluster-config mycluster
30-
```
28+
```bash
29+
bx cs cluster-config mycluster
30+
```

docs/misc/bluemix-external-ip.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## IBM Cloud Container Service
1+
## IBM Bluemix Container Service
22

33
### Get external IP and service port
44

@@ -11,24 +11,24 @@ Note: if using this command for an application, replace "nginx-secure-proxy" in
1111
Windows:
1212

1313
1. get Public IP
14-
```bash
15-
bx cs workers mycluster
16-
```
17-
The preceding bx command displays the public IP like this example:
18-
```bash
19-
ID Public IP Private IP Machine Type State Status Version
20-
kube-hou02-pa2ccba8cbbcd243b39dd79fc0a6ad24bb-w1 184.172.236.206 10.76.114.209 free normal Ready 1.5.6_921
21-
```
14+
```bash
15+
bx cs workers mycluster
16+
```
17+
The preceding bx command displays the public IP like this example:
18+
```bash
19+
ID Public IP Private IP Machine Type State Status Version
20+
kube-hou02-pa2ccba8cbbcd243b39dd79fc0a6ad24bb-w1 184.172.236.206 10.76.114.209 free normal Ready 1.5.6_921
21+
```
2222

2323
1. get service port
24-
```bash
25-
kubectl get svc nginx-secure-proxy --namespace=nsolid
26-
```
27-
Note: if using this command for an application, replace "nginx-secure-proxy" in the command text with the {service-name} of the application.
24+
```bash
25+
kubectl get svc nginx-secure-proxy --namespace=nsolid
26+
```
27+
Note: if using this command for an application, replace "nginx-secure-proxy" in the command text with the {service-name} of the application.
2828

29-
The preceding kubectl command displays the service ports like this example:
30-
```bash
31-
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
32-
nginx-secure-proxy 10.10.10.7 <pending> 80:32144/TCP,443:30238/TCP 8m
33-
```
34-
The first node port (32144) is for http. The second (30238) is for https.
29+
The preceding kubectl command displays the service ports like this example:
30+
```bash
31+
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
32+
nginx-secure-proxy 10.10.10.7 <pending> 80:32144/TCP,443:30238/TCP 8m
33+
```
34+
The first node port (32144) is for http. The second (30238) is for https.

0 commit comments

Comments
 (0)