|
1 |
| -### Known issues for WebLogic Deploy Tooling |
| 1 | ++++ |
| 2 | +title = "Release Notes" |
| 3 | +date = 2019-02-22T15:27:38-05:00 |
| 4 | +weight = 5 |
| 5 | +pre = "<b> </b>" |
| 6 | ++++ |
| 7 | + |
| 8 | +Review the following release notes for recent changes to WebLogic Deploy Tooling and known issues. |
| 9 | + |
| 10 | +- WebLogic Deploy Tooling now incorporates the SnakeYAML parser for reading and writing model files. |
| 11 | +This may require some changes to existing models in order to be parsed correctly. |
| 12 | + - Model elements that use [delete notation]({{< relref "/concepts/model#declaring-named-mbeans-to-delete" >}}) need to be escaped in single or double quotation marks. |
| 13 | + ```yaml |
| 14 | + topology: |
| 15 | + Server: |
| 16 | + '!ms1': |
| 17 | + ms2: |
| 18 | + ``` |
| 19 | +
|
| 20 | +
|
| 21 | + - Model elements under the same parent should be indented to the exact same level. The previous YAML parser did not enforce this restriction, |
| 22 | + but it is standard for YAML. In this example, each cluster is indented four spaces. |
| 23 | + ```yaml |
| 24 | + topology: |
| 25 | + Cluster: |
| 26 | + cluster1: |
| 27 | + ClientCertProxyEnabled: True |
| 28 | + cluster2: |
| 29 | + WeblogicPluginEnabled: true |
| 30 | + ``` |
| 31 | +
|
| 32 | +
|
| 33 | +
|
| 34 | +- Object lists in the `kubernetes` section of the model now should be specified in a hyphenated list format, |
| 35 | +similar to how they appear in the domain resource file produced for [WebLogic Kubernetes Operator](https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/domain-resource/). |
| 36 | +```yaml |
| 37 | + clusters: |
| 38 | + - clusterName: 'cluster1' |
| 39 | + allowReplicasBelowMinDynClusterSize: true |
| 40 | + - clusterName: 'cluster2' |
| 41 | + allowReplicasBelowMinDynClusterSize: true |
| 42 | +``` |
| 43 | +- The "named object list" format is deprecated now, and will cause warning messages to be displayed. |
| 44 | +```yaml |
| 45 | + clusters: |
| 46 | + 'cluster1': |
| 47 | + allowReplicasBelowMinDynClusterSize: true |
| 48 | + 'cluster2': |
| 49 | + allowReplicasBelowMinDynClusterSize: true |
| 50 | +``` |
| 51 | + |
| 52 | +- The deprecated argument `-model_sample` has been removed from the Model Help Tool. |
| 53 | +The Model Help Tool has used model sample format by default since release 1.9.2. |
| 54 | + |
| 55 | +## Known issues for WebLogic Deploy Tooling |
2 | 56 |
|
3 | 57 | The following list contains known issues. Each issue may contain a workaround or an associated issue number.
|
4 | 58 |
|
|
0 commit comments