Skip to content

Commit 37c1f6b

Browse files
committed
wip
1 parent f0f4681 commit 37c1f6b

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

site/quickstart.md

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -180,13 +180,27 @@ d. Create an Ingress for the domain, in the domain namespace, by using the [samp
180180
```
181181
$ cd kubernetes/samples/charts
182182
$ helm install ingress-per-domain --name domain1-ingress --values ingress-per-domain/values.yaml
183-
```
184-
185-
**TODO** fix this
186-
187-
e. Confirm that the load balancer noticed the new Ingress and is successfully routing to the domain's server pods:
188-
```
189-
$ curl http://${HOSTNAME}:30305/sample-domain1/
183+
```
184+
185+
e. To confirm that the load balancer noticed the new Ingress and is successfully routing to the domain's server pods
186+
you can hit the URL for the "WebLogic Ready App" which will return a HTTP 200 status code as
187+
shown in the example below. If you used the host-based routing ingress sample you will need to
188+
provide the hostname in the `-H` option:
189+
```
190+
$ curl -v -H 'host: domain1.org' http://den01smd.us.oracle.com:30305/weblogic/

191+
* 
About to connect() to den01smd.us.oracle.com port 30305 (#0)

192+
* Trying 10.196.1.64...

193+
* Connected to den01smd.us.oracle.com (10.196.1.64) port 30305 (#0)
194+

> GET /weblogic/ HTTP/1.1

195+
> User-Agent: curl/7.29.0

196+
> Accept: */*

197+
> host: domain1.org

198+
>
199+

< HTTP/1.1 200 OK

200+
< Content-Length: 0

201+
< Date: Thu, 20 Dec 2018 14:52:22 GMT
202+

< Vary: Accept-Encoding

203+
< 
* Connection #0 to host den01smd.us.oracle.com left intact

190204
```
191205
**Note**: Depending on where your Kubernetes cluster is running, you may need to open firewall ports or
192206
update security lists to allow ingress to this port.

0 commit comments

Comments
 (0)