Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2a14efb

Browse files
add release notes
1 parent 1062c13 commit 2a14efb

File tree

1 file changed

+55
-1
lines changed
  • documentation/2.0/content/release-notes

1 file changed

+55
-1
lines changed

‎documentation/2.0/content/release-notes.md‎ renamed to ‎documentation/2.0/content/release-notes/_index.md‎

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,58 @@
1-
### Known issues for WebLogic Deploy Tooling
1+
+++
2+
title = "Release Notes"
3+
date = 2019年02月22日T15: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
256

357
The following list contains known issues. Each issue may contain a workaround or an associated issue number.
458

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /