You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/1.9/content/_index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ See the [Release Notes]({{< relref "/release-notes.md" >}}) for recent changes,
18
18
19
19
This documentation includes sections targeted to different audiences. To help you find what you are looking for more easily, please consult this table of contents:
20
20
21
-
*[Concepts]({{< relref "/concepts/" >}}) explains the underlying metadata model, files, and configurations.
22
-
* The [User guide]({{< relref "/userguide/" >}}) contains detailed usage information, including how to install and configure WebLogic Deploy Tooling, and how to use the tools to .
21
+
*[Concepts]({{< relref "/concepts/" >}}) explains the underlying metadata model, files, and configurations...
22
+
* The [User guide]({{< relref "/userguide/" >}}) contains detailed usage information, including how to install and configure WebLogic Deploy Tooling, and how to use each tool.
23
23
* The [Samples]({{< relref "/samples/" >}}) provide detailed example code and instructions that show you how to perform various tasks.
24
24
* The [Developer guide]({{< relref "/developer/" >}}) provides details for people who want to understand how WDT is built, tested, and so on.
Copy file name to clipboardExpand all lines: documentation/1.9/content/concepts/archive.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ The archive file is used to deploy binaries and other file resources to the targ
10
10
11
11
Note that file resources that already exist on the target system need not be included in the archive, provided that the model specifies the correct location on the target system.
Copy file name to clipboardExpand all lines: documentation/1.9/content/concepts/model.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ The model is written in YAML (or optionally, JSON). The YAML parser, built into
31
31
32
32
All assignment statements must have one or more spaces between the colon and the value. All comments must have a space after the pound sign (also known as hash) to be considered a comment. YAML doesn't allow comments in all locations. While the YAML parser used by the framework does not try to enforce these restrictions, it is likely that putting comments in some locations may cause parse errors since YAML is a difficult language to parse due to its complex indention rules.
33
33
34
-
####Contents
34
+
### Contents
35
35
36
36
-[Top-Level Sections](#top-level-model-sections)
37
37
-[Simple Example](#simple-example)
@@ -50,7 +50,7 @@ The tooling has five top-level model sections:
50
50
-`appDeployments` - The location where shared libraries and applications are specified.
51
51
-`kubernetes` - The location where the WLS Kubernetes Operator domain configuration is specified.
52
52
53
-
### Simple Example
53
+
####Simple Example
54
54
Here is a simple example of a model to deploy an application and its data source:
55
55
56
56
```yaml
@@ -89,7 +89,7 @@ The above example shows two important features of the framework. First, notice
89
89
90
90
Second, notice that the `jsf#2.0` shared library `SourcePath` attribute value starts with `@@WL_HOME@@`. This is a path token that can be used to specify that the location is relative to the location of the WebLogic Server home directory on the target environment. See [Model Tokens](#model-tokens) for more information and a list of available path tokens.
91
91
92
-
The example above shows the attribute `SourcePath` of the `simpleear` application with a value of `wlsdeploy/applications/simpleear.ear`. The prefix `wlsdeploy/` indicates that the resource is located in the archive file in the specified location, and will be deployed to that directory within the domain, in this case `<domain-home>/wlsdeploy/applications/simpleear.ear`. See [The Archive File](archive.md) for more details about using the archive file.
92
+
The example above shows the attribute `SourcePath` of the `simpleear` application with a value of `wlsdeploy/applications/simpleear.ear`. The prefix `wlsdeploy/` indicates that the resource is located in the archive file in the specified location, and will be deployed to that directory within the domain, in this case `<domain-home>/wlsdeploy/applications/simpleear.ear`. See [The Archive File]({{< relref "/concepts/archive.md" >}}) for more details about using the archive file.
93
93
94
94
Users can create further directory structures underneath the above locations to organize the files and directories as they see fit. Note that any binary that already exists on the target system need not be included in the archive provided that the model specified the correct location on the target system.
95
95
@@ -254,7 +254,7 @@ This feature can also remove items that were created by WebLogic Server template
254
254
...
255
255
```
256
256
257
-
This feature does not apply to named security providers within a realm. These items follow a special set of rules that are required to maintain their ordering. See [Modeling Security Providers](use_cases.md#modeling-security-providers) for detailed information.
257
+
This feature does not apply to named security providers within a realm. These items follow a special set of rules that are required to maintain their ordering. See [Modeling Security Providers]({{< relref "/concepts/use_cases#modeling-security-providers" >}}) for detailed information.
258
258
259
259
This feature cannot be use to un-deploy applications or remove libraries.
Copy file name to clipboardExpand all lines: documentation/1.9/content/concepts/target_env.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ weight: 5
6
6
---
7
7
8
8
9
-
The [Discover Domain]({{< relref "/discover.md" >}}) and [Prepare Model]({{< relref "/prepare.md" >}}) Tools allow you to customize the model and other files produced to be compatible with a specific target environment. Options for a target environment may include:
10
-
- Using model tokens for some attributes in the model (see[Model Tokens]({{< relref "/model#model-tokens" >}}))
11
-
- Using Kubernetes secrets for credentials in the model
12
-
- Applying filters to the model (see[Model Filters]({{< relref "/tool_configuration#model-filters" >}}))
13
-
- Creating additional configuration files for the target system
9
+
The [Discover Domain]({{< relref "/userguide/tools/discover.md" >}}) and [Prepare Model]({{< relref "/userguide/tools/prepare.md" >}}) Tools allow you to customize the model and other files produced to be compatible with a specific target environment. Options for a target environment may include:
10
+
- Using model tokens for some attributes in the model. See[Model Tokens]({{< relref "/concepts/model#model-tokens" >}}).
11
+
- Using Kubernetes secrets for credentials in the model.
12
+
- Applying filters to the model. See[Model Filters]({{< relref "/concepts/tool_configuration#model-filters" >}}).
13
+
- Creating additional configuration files for the target system.
14
14
15
15
### Specifying a target environment
16
16
@@ -31,10 +31,10 @@ A target environment is configured in a JSON file at this location:
The `<target-name>` value corresponds to the value of the `-target` argument on the tool's command line. The WLS installation includes two pre-defined targets:
34
-
-[Oracle Weblogic Server Kubernetes Operator](#the-oracle-weblogic-server-kubernetes-operator-target) (named `k8s`)
You can define a new or extended target environment with a new `target-name` in the above location, or using a [Custom Configuration](../tool_configuration.md#custom-configuration) directory, such as `$WDT_CUSTOM_CONFIG/target/<my-target-name>/target.json`.
37
+
You can define a new or extended target environment with a new `target-name` in the above location, or using a [Custom Configuration]({{< relref "/concepts/tool_configuration#custom-configuration" >}}) directory, such as `$WDT_CUSTOM_CONFIG/target/<my-target-name>/target.json`.
38
38
39
39
Here is an example of a target environment file:
40
40
```
@@ -55,13 +55,13 @@ Each of the fields in this example is optional, and can be customized.
55
55
56
56
#### `model_filters`
57
57
58
-
This field specifies the filters to be applied to the resulting model. This follows the same format and rules as the [Model Filters](../tool_configuration.md#model-filters) configuration. The `discover` type should always be used here.
58
+
This field specifies the filters to be applied to the resulting model. This follows the same format and rules as the [Model Filters]({{< relref "/concepts/tool_configuration#model-filters" >}}) configuration. The `discover` type should always be used here.
59
59
60
60
The `@@TARGET_CONFIG_DIR@@` token can be used to indicate that the specified filter is in the same directory as the target configuration file.
61
61
62
62
#### `variable_injectors`
63
63
64
-
This field specifies the variable injectors to be applied to the resulting model. This follows the same format and rules as the [Variable Injectors](../variable_injection.md) configuration.
64
+
This field specifies the variable injectors to be applied to the resulting model. This follows the same format and rules as the [Variable Injectors]({{< relref "/userguide/tools/variable_injection.md" >}}) configuration.
65
65
66
66
#### `validation_method`
67
67
@@ -77,7 +77,7 @@ In both these cases, the script to create the Kubernetes secrets is written to `
77
77
78
78
#### `wls_credentials_name`
79
79
80
-
This field specifies a name for use with the WDT_MODEL_SECRETS_NAME_DIR_PAIRS environment variable to identify administration credential Secrets for the domain. This is useful when those Secrets are stored in a directory that does not follow the `<directory>/<name>/<key>` convention. For more information about using the WDT_MODEL_SECRETS_NAME_DIR_PAIRS environment variable, see [Model Tokens](../model.md#model-tokens).
80
+
This field specifies a name for use with the WDT_MODEL_SECRETS_NAME_DIR_PAIRS environment variable to identify administration credential Secrets for the domain. This is useful when those Secrets are stored in a directory that does not follow the `<directory>/<name>/<key>` convention. For more information about using the WDT_MODEL_SECRETS_NAME_DIR_PAIRS environment variable, see [Model Tokens]({{< relref "/concepts/model#model-tokens" >}}).
0 commit comments