Skip to content

Commit e415253

Browse files
committed
Update documentation for port-forward for wlst
1 parent 9e32456 commit e415253

File tree

1 file changed

+19
-4
lines changed
  • documentation/staging/content/userguide/managing-domains/accessing-the-domain

1 file changed

+19
-4
lines changed

documentation/staging/content/userguide/managing-domains/accessing-the-domain/port-forward.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,26 @@ This behavior depends on your version and domain resource configuration:
6363
[schema](https://github.com/oracle/weblogic-kubernetes-operator/blob/main/documentation/domains/Domain.md).
6464

6565
* For Istio-enabled domains running Istio versions prior to 1.10,
66-
the operator already adds a
67-
network channel with a `localhost` listen address for each
68-
existing port. This means that no additional configuration is required
69-
to enable port forwarding when Istio is enabled.
66+
you must add an additional network channel to the WebLogic Administration Server
67+
configured with the following attributes:
68+
* Protocol defined as `t3`.
69+
* Listen address defined with `localhost`.
70+
* Listen port. Note, you should choose a port that does not conflict with any ports defined
71+
in any of the additional network channels created for use with Istio versions prior to v1.10.
7072
For more details, see [Added network channels for Istio versions prior to v1.10]({{< relref "/userguide/istio/istio#added-network-channels-for-istio-versions-prior-to-v110" >}}).
73+
* Enable `HTTP` protocol for this network channel.
74+
* Do _NOT_ set an `external listen address` or `external listen port` on the network access point.
75+
76+
For example, here is a snippet of a WebLogic domain `config.xml` file for channel `PortForward`
77+
```xml
78+
<network-access-point>
79+
<name>PortForward</name>
80+
<protocol>t3</protocol>
81+
<listen-address>localhost</listen-address>
82+
<listen-port>8989</listen-port>
83+
<http-enabled-for-this-protocol>true</http-enabled-for-this-protocol>
84+
</network-access-point>
85+
```
7186

7287
{{% notice note %}}
7388
If your domain is already running, and you have made configuration changes,

0 commit comments

Comments
 (0)