Skip to content

Commit 862441b

Browse files
committed
Update content to use https and not http
1 parent 2477261 commit 862441b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

content/modules/ROOT/pages/02-gitops-basics.adoc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -264,12 +264,9 @@ Alternatively, get the app Route from the CLI:
264264
[.console-input]
265265
[source,bash,subs="attributes+,+macros"]
266266
----
267-
oc get route bgd -n {user}-bgd -o jsonpath='{"http://"}{.spec.host}{"\n"}'
267+
oc get route bgd -n {user}-bgd -o jsonpath='{"https://"}{.spec.host}{"\n"}'
268268
----
269269

270-
WARNING: This route is only available via HTTP. If you try to visit via HTTPS,
271-
you will get an _Application not available_ error. Do you know why that is?
272-
273270
Your application should look like this.
274271

275272
image::bgd.png[SampleApp]

content/modules/ROOT/pages/03-kustomize.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ Remember you can get this from the topology view, or from the CLI:
465465
[.console-input]
466466
[source,bash,subs="attributes+,+macros"]
467467
----
468-
oc get route -n {user}-bgdk bgd -o jsonpath='{"http://"}{.spec.host}{"\n"}'
468+
oc get route -n {user}-bgdk bgd -o jsonpath='{"https://"}{.spec.host}{"\n"}'
469469
----
470470

471471
You should see yellow balls flying around. This is the same application you used

content/modules/ROOT/pages/04-helm.adoc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ spec:
191191
kind: Service
192192
name: bgd
193193
weight: 100
194+
tls:
195+
termination: edge
196+
insecureEdgeTerminationPolicy: Redirect
194197
----
195198

196199
[#helm-charts-deploy-applications]
@@ -253,7 +256,7 @@ You can see the link by using this command:
253256
[.console-input]
254257
[source,bash,subs="attributes+,+macros"]
255258
----
256-
oc get route bgd-helm -n {user}-bgdh -o jsonpath='{"http://"}{.spec.host}{"\n"}'
259+
oc get route bgd-helm -n {user}-bgdh -o jsonpath='{"https://"}{.spec.host}{"\n"}'
257260
----
258261

259262
image::yellowoutput.png[]
@@ -343,7 +346,7 @@ You can see the link by using this command:
343346
[.console-input]
344347
[source,bash,subs="attributes+,+macros"]
345348
----
346-
oc get route bgd-helm -n {user}-bgdh -o jsonpath='{"http://"}{.spec.host}{"\n"}'
349+
oc get route bgd-helm -n {user}-bgdh -o jsonpath='{"https://"}{.spec.host}{"\n"}'
347350
----
348351

349352
image::bgd-green.png[]
@@ -398,7 +401,7 @@ Access the route again, and you should now see the application in purple. Use th
398401
[.console-input]
399402
[source,bash,subs="attributes+,+macros"]
400403
----
401-
oc get route bgd-helm -n {user}-bgdh -o jsonpath='{"http://"}{.spec.host}{"\n"}'
404+
oc get route bgd-helm -n {user}-bgdh -o jsonpath='{"https://"}{.spec.host}{"\n"}'
402405
----
403406

404407
image::bgd-purple.png[]

content/modules/ROOT/pages/05-syncwaves-hooks.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ use the following CLI snippet to get the exact URL you need:
254254
[.console-input]
255255
[source,bash,subs="attributes+,+macros"]
256256
----
257-
oc get route -n user%USERNUM%-todo todo -o jsonpath='{"http://"}{.spec.host}{"/todo.html\n"}'
257+
oc get route -n {user}-todo todo -o jsonpath='{"https://"}{.spec.host}{"/todo.html\n"}'
258258
----
259259

260260
> WARNING: You need to use `/todo.html` in the URL to access the application. It

0 commit comments

Comments
 (0)