Skip to content

Commit 366e294

Browse files
authored
Merge pull request #1036 from oracle/rmarano2
minor edits, jenkins-ignore
2 parents 9292735 + ff6d38e commit 366e294

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs-source/content/userguide/cicd/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "CI/CD considerations"
33
date: 2019-04-11T13:01:55-04:00
44
weight: 5
5-
description: "Learn about managing domain images with CI/CD."
5+
description: "Learn about managing domain images with continuous integration and continuous delivery (CI/CD)."
66
draft: false
77
---
88

@@ -44,9 +44,9 @@ you need your domain, that is the configuration.
4444

4545
There is also other information associated with a domain that needs to live
4646
somewhere, for example leasing tables, message and transaction stores, and so
47-
on. We recommend that these be kept in a database to take advantage of built-in
48-
database server HA, and the fact that disaster recovery of sites across all
49-
but the shortest distances almost always requires using a single database
47+
on. We recommend that these be kept in a database to take advantage of built-in
48+
database server HA, and the fact that disaster recovery of sites across all
49+
but the shortest distances almost always requires using a single database
5050
server to consolidate and replicated data (DataGuard).
5151

5252
There are two common approaches on how to structure these components. The first,

docs-source/content/userguide/cicd/how-to-copy-domains.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "How to copy domains"
2+
title: "Copy domains"
33
date: 2019-04-11T13:48:15-04:00
44
draft: false
55
weight: 5
@@ -19,7 +19,7 @@ and to create a ZIP file of this domain before starting any servers.
1919
> The domain ZIP must be created before starting servers.
2020
2121
When servers are started the first time, they will encrypt various other data.
22-
Make sure you create the ZIP file before starting servers for the first time.
22+
Make sure that you create the ZIP file before starting servers for the first time.
2323
The primordial domain ZIP file should be stored in a safe place where the CI/CD
2424
can get it when needed, for example in a secured Artifactory repository (or
2525
something similar).

docs-source/content/userguide/cicd/tools.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ in a CI/CD pipeline. For example, the
1313
`createDomain` tool creates a new domain based on a simple model, and
1414
`updateDomain` (and `deployApps`) uses the same model concept to update
1515
an existing domain (preserving the same domain encryption key). The `deployApps`
16-
tool is very similar to the updateDomain tool, but limits what can be updated
17-
to application related configuration attributes such as data sources and
16+
tool is very similar to the `updateDomain` tool, but limits what can be updated
17+
to application-related configuration attributes such as data sources and
1818
application archives. The model used by these tools is a sparse set of
1919
attributes needed to create or update the domain. A model can be as sparse
2020
as providing only the WebLogic Server administrative password, although not very
@@ -24,8 +24,8 @@ interesting. A good way to get a jumpstart on a model is to use the
2424
Other than the tools themselves, there are three components to the WDT tools:
2525

2626
- *The Domain Model* - Metadata model describing the desired domain.
27-
The metadata domain model can be YAML or JSON and is documented [here](https://github.com/oracle/weblogic-deploy-tooling#the-metadata-model).
28-
- *The Archive Zip* - Binaries to supplement the model.
27+
The metadata domain model can be written in YAML or JSON and is documented [here](https://github.com/oracle/weblogic-deploy-tooling#the-metadata-model).
28+
- *The Archive ZIP* - Binaries to supplement the model.
2929
All binaries needed to supplement the model must be specified in an archive
3030
file, which is just a ZIP file with a specific directory structure. Optionally,
3131
the model can be stored inside the ZIP file, if desired. Any binaries not

0 commit comments

Comments
 (0)