Skip to content

Commit dc0b472

Browse files
authored
Merge pull request #171 from f5devcentral/develop
update ip addressing in documentation
2 parents 57259b8 + 5e9133a commit dc0b472

16 files changed

Lines changed: 47 additions & 37 deletions

File tree

docs/class1/class1.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ We will leverage the following setup to configure the Kubernetes environment.
2222
* - **Hostname**
2323
- **IP-ADDR**
2424
- **Credentials**
25-
* - ocp-provisioner
26-
- 10.1.1.4
27-
- ubuntu/HelloUDF
25+
* - superjump
26+
- 10.1.1.6
27+
- ubuntu/ubuntu
2828
* - bigip1
29-
- 10.1.1.5
29+
- 10.1.1.4
3030
- admin/F5site02@
3131
* - kube-master1
3232
- 10.1.1.11

docs/class1/kubernetes/cluster-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
args: [
3535
"--bigip-username=$(BIGIP_USERNAME)",
3636
"--bigip-password=$(BIGIP_PASSWORD)",
37-
"--bigip-url=10.1.1.5",
37+
"--bigip-url=10.1.1.4",
3838
"--insecure=true",
3939
"--bigip-partition=kubernetes",
4040
"--pool-member-type=cluster",

docs/class1/kubernetes/configmap-hello-world.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ data:
2424
"serviceMain": {
2525
"class": "Service_HTTP",
2626
"virtualAddresses": [
27-
"10.1.10.101"
27+
"10.1.1.4"
2828
],
2929
"pool": "web_pool",
3030
"virtualPort": 80

docs/class1/kubernetes/ingresslink/ingresslink-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ spec:
3434
args: [
3535
"--bigip-username=$(BIGIP_USERNAME)",
3636
"--bigip-password=$(BIGIP_PASSWORD)",
37-
"--bigip-url=10.1.1.5",
37+
"--bigip-url=10.1.1.4",
3838
"--insecure=true",
3939
"--custom-resource-mode=true",
4040
"--bigip-partition=kubernetes",

docs/class1/kubernetes/ingresslink/vs-ingresslink.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: vs-ingresslink
55
namespace: nginx-ingress
66
spec:
7-
virtualServerAddress: "10.1.10.101"
7+
virtualServerAddress: "10.1.1.4"
88
iRules:
99
- /Common/Proxy_Protocol_iRule
1010
selector:

docs/class1/kubernetes/nodeport-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
- args:
2222
- --bigip-username=$(BIGIP_USERNAME)
2323
- --bigip-password=$(BIGIP_PASSWORD)
24-
- --bigip-url=10.1.1.5
24+
- --bigip-url=10.1.1.4
2525
- --bigip-partition=kubernetes
2626
- --pool-member-type=nodeport
2727
- --insecure=true

docs/class1/module1/lab2.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ required files and launch them.
122122
.. warning:: Don't forget to select the "kubernetes" partition or you'll
123123
see nothing.
124124

125-
Here you can see a new Virtual Server, "ingress_10.1.10.101_80" was created,
126-
listening on 10.1.10.101:80 in partition "kubernetes".
125+
Here you can see a new Virtual Server, "ingress_10-1-1-4_80" was created,
126+
listening on 10.1.1.4:80 in partition "kubernetes".
127127

128128
.. image:: ../images/f5-container-connector-check-app-ingress.png
129129

@@ -149,7 +149,7 @@ required files and launch them.
149149
.. image:: ../images/udffirefox.png
150150

151151
#. The *Firefox* application installed on the ocp-provisioner system's will appear in your browser (i.e., a *browser-in-a-browser*).
152-
Find and click on the "**Hello, World**" bookmark/shortcut, or type http://10.1.10.101 in the appropriate URL field.
152+
Find and click on the "**Hello, World**" bookmark/shortcut, or type http://10.1.1.4 in the appropriate URL field.
153153

154154
.. image:: ../images/ffhelloworld.png
155155

docs/class1/module1/lab3.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ required files and launch them.
118118
Browse to :menuselection:`Local Traffic --> Virtual Servers`
119119

120120
Here you can see a new Virtual Server, "**serviceMain**" was created,
121-
listening on **10.1.10.101:80** in partition "**AS3**".
121+
listening on **10.1.1.4:80** in partition "**AS3**".
122122

123123
.. image:: ../images/f5-container-connector-check-app-bigipconfig-as3.png
124124

@@ -134,7 +134,7 @@ required files and launch them.
134134

135135
#. Access your web application via **Firefox** on the **ocp-provisioner**.
136136

137-
.. note:: Select the "Hello, World" shortcut or type http://10.1.10.101 in the
137+
.. note:: Select the "Hello, World" shortcut or type http://10.1.1.4 in the
138138
URL field.
139139

140140
.. image:: ../images/f5-container-connector-access-app.png

docs/class1/module2/lab1.rst

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To do so we'll need to configure BIG-IP first.
4242

4343
.. code-block:: bash
4444
45-
ssh admin@10.1.1.5 tmsh create auth partition kubernetes
45+
ssh admin@10.1.1.4 tmsh create auth partition kubernetes
4646
4747
#. Install AS3 via the management console
4848

@@ -64,15 +64,15 @@ To do so we'll need to configure BIG-IP first.
6464

6565
.. code-block:: bash
6666
67-
ssh admin@10.1.1.5 tmsh create net tunnels vxlan fl-vxlan { app-service none port 8472 flooding-type none }
67+
ssh admin@10.1.1.4 tmsh create net tunnels vxlan fl-vxlan { app-service none port 8472 flooding-type none }
6868
6969
#. Create a vxlan tunnel.
7070
7171
- Browse to: :menuselection:`Network --> Tunnels --> Tunnel List`
7272
- Create a new tunnel called "**fl-tunnel**"
7373
- Set the Profile to the one previously created called "**fl-vxlan**"
7474
- set the Key = **1**
75-
- Set the Local Address to **10.1.10.101**
75+
- Set the Local Address to **10.1.1.4**
7676
- Click **Finished**
7777
7878
.. image:: ../images/create-fl-vxlan-tunnel.png
@@ -81,7 +81,7 @@ To do so we'll need to configure BIG-IP first.
8181
8282
.. code-block:: bash
8383
84-
ssh admin@10.1.1.5 tmsh create net tunnels tunnel fl-tunnel { app-service none key 1 local-address 10.1.10.101 profile fl-vxlan }
84+
ssh admin@10.1.1.4 tmsh create net tunnels tunnel fl-tunnel { app-service none key 1 local-address 10.1.1.4 profile fl-vxlan }
8585
8686
#. Create the vxlan tunnel self-ip
8787
@@ -111,7 +111,17 @@ To do so we'll need to configure BIG-IP first.
111111
112112
.. code-block:: bash
113113
114-
ssh admin@10.1.1.5 tmsh create net self fl-vxlan-selfip { address 10.42.20.1/16 vlan fl-tunnel allow-service all }
114+
ssh admin@10.1.1.4 tmsh create net self fl-vxlan-selfip { address 10.42.20.1/16 vlan fl-tunnel allow-service all }
115+
116+
#. Create route to Flannel network
117+
118+
- Browse to: :menuselection:`Network --> Routes`
119+
- Create a new route called "**flannel_route**"
120+
- Set the Destination to "**10.244.0.0**"
121+
- Set the Netmask to "**255.255.0.0**"
122+
- Set the Resource to "Use VLAN / Tunnle"
123+
- Set the VLAN / Tunnel to "**fl-tunnel**" (*Created earlier*)
124+
- Click **Finished**
115125
116126
CIS Deployment
117127
--------------
@@ -149,7 +159,7 @@ CIS Deployment
149159
150160
.. code-block:: bash
151161
152-
ssh admin@10.1.1.5 tmsh show net tunnels tunnel fl-tunnel all-properties
162+
ssh admin@10.1.1.4 tmsh show net tunnels tunnel fl-tunnel all-properties
153163
154164
.. image:: ../images/get-fl-tunnel-mac-addr.png
155165
@@ -159,7 +169,7 @@ CIS Deployment
159169
160170
.. code-block:: bash
161171
162-
ssh admin@10.1.1.5 tmsh show net tunnels tunnel fl-tunnel all-properties | grep MAC | cut -c 33-51
172+
ssh admin@10.1.1.4 tmsh show net tunnels tunnel fl-tunnel all-properties | grep MAC | cut -c 33-51
163173
164174
#. In the Web Shell window (*command line of kube-master1*), edit the **bigip-node.yaml**
165175
file to change the highlighted MAC address with the MAC address copied from the previous step.

docs/class1/module2/lab2.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ On **kube-master1** we will create all the required files:
8585
.. warning:: Don't forget to select the "kubernetes" partition or you'll
8686
see nothing.
8787

88-
Here you can see a new Virtual Server, "**ingress_10.1.10.101_80**" was created,
89-
listening on **10.1.10.101:80** in partition "**kubernetes**".
88+
Here you can see a new Virtual Server, "**ingress_10.1.1.4_80**" was created,
89+
listening on **10.1.1.4:80** in partition "**kubernetes**".
9090

9191
.. image:: ../images/f5-container-connector-check-app-ingress2.png
9292

@@ -100,9 +100,9 @@ On **kube-master1** we will create all the required files:
100100
.. note:: You can see that the pool members IP addresses are assigned from
101101
the overlay network (**ClusterIP mode**)
102102

103-
#. Access your web application via **Firefox** on the **ocp-provioner**.
103+
#. Access your web application via **Firefox** on the **superjump**.
104104

105-
.. note:: Select the "Hello, World" shortcut or type http://10.1.10.101 in the
105+
.. note:: Select the "Hello, World" shortcut or type http://10.1.1.4 in the
106106
URL field.
107107

108108
.. image:: ../images/f5-container-connector-access-app.png

0 commit comments

Comments
 (0)