Skip to content

Commit f0c4b2d

Browse files
committed
Describe wko_filter and internal filters in general
1 parent 279c0e1 commit f0c4b2d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

documentation/2.0/content/userguide/tools-config/model_filters.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,22 @@ This example configures two filters for the Create Domain Tool: `fix-password.py
4444
]
4545
}
4646
```
47+
### Internal Filters
48+
49+
Internal filters are provided by WebLogic Deploy Tooling to perform modifications to the domain model. They are referenced by ID in the target configuration file. This example shows use of the internal filter `wko_filter` and a user-defined filter `fix-password` for use with the Create Domain Tool.
50+
```json
51+
{
52+
"create": [
53+
{ "name": "fixPassword", "path": "/home/user/fix-password.py" },
54+
{ "id": "wko_filter" }
55+
]
56+
}
57+
```
58+
Internal filters cannot be copied modified like other types of filters.
59+
60+
#### Internal filter `wko_filter`
61+
62+
This filter prepares the domain model for use with WebLogic Kubernetes Operator. It performs the following modifications:
63+
- Remove any attributes that can only be deployed in online mode
64+
- Set the `CalculatedListenPorts` attribute to false for dynamic clusters
65+
- Warn if servers in a static cluster have different listen ports

0 commit comments

Comments
 (0)