Skip to content

Commit 3542c36

Browse files
rosemarymaranorjeberhard
authored andcommitted
updates
1 parent c8e5051 commit 3542c36

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

site/domain-resource.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ The following prerequisites must be fulfilled before proceeding with the creatio
1313

1414
# YAML files
1515

16-
Domain resources are defined using the domain resource YAML files. For each WLS domain you want to create and configure, you should create one domain resource YAML file and apply it. In the example below, you will find a domain resource YAML file template that you can use as a basis. Copy the template and override the default settings so that it matches all the WLS domain parameters that define your WLS domain.
16+
Domain resources are defined using the domain resource YAML files. For each WLS domain you want to create and configure, you should create one domain resource YAML file and apply it. In the example referenced below, the sample script, `create-domain.sh`, generates a domain resource YAML file that you can use as a basis. Copy the file and override the default settings so that it matches all the WLS domain parameters that define your WLS domain.
1717

18-
For sample YAML templates, see the [Domain resource example](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md).
18+
See the [WebLogic sample domain home on a persistent volume README](../kubernetes/samples/scripts/create-weblogic-domain/domain-home-on-pv/README.md).
1919

2020
# Kubernetes resources
2121

site/install.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,34 @@ If `weblogic-operator-namespace` exists, then it will be used. If it does not e
130130

131131
You can verify the operator installation by examining the output from the `helm install` command.
132132

133+
### Alternatively, use the Helm chart from GitHub chart repository
134+
135+
Add this repo to the Helm installation:
136+
137+
```
138+
$ helm repo add weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
139+
```
140+
141+
Verify that the repository was added correctly:
142+
143+
```
144+
$ helm repo list
145+
NAME URL
146+
weblogic-operator https://oracle.github.io/weblogic-kubernetes-operator/charts
147+
```
148+
149+
Update with the latest information about charts from the chart repositories:
150+
151+
```
152+
$ helm repo update
153+
```
154+
155+
Install the operator from the repo:
156+
157+
```
158+
$ helm install weblogic-operator/weblogic-operator --name weblogic-operator
159+
```
160+
133161
## Removing the operator
134162

135163
The `helm delete` command is used to remove an operator release and its associated resources from the Kubernetes cluster. The release name used with the `helm delete` command is the same release name used with the `helm install` command (see [Install the Helm chart](#install-the-helm-chart)). For example:
@@ -395,7 +423,7 @@ The Helm installation will produce an error, similar to the following, if `exter
395423
```
396424
Error: render error in "weblogic-operator/templates/main.yaml": template: weblogic-operator/templates/main.yaml:9:3: executing "weblogic-operator/templates/main.yaml"
397425
at <include "operator.va...>: error calling include: template: weblogic-operator/templates/_validate-inputs.tpl:42:14: executing "operator.validateInputs"
398-
at <include "utils.endVa...>: error calling include: template: weblogic-operator/templates/_utils.tpl:22:6: executing "utils.endValidation"
426+
at <include "utils.endVa...>: error calling include: template: weblogic-operator/templates/_utils.tpl:22:6: executing "utils.endValidation"
399427
at <fail $scope.validati...>: error calling fail:
400428
string externalRestIdentitySecret must be specified
401429

site/weblogic-docker-images.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ Then, you can pull the image with this command:
5858
```
5959
$ docker pull store/oracle/weblogic:12.2.1.3
6060
```
61+
If desired, you can:
62+
63+
* Check the WLS version with `docker run store/oracle/weblogic:12.2.1.3 sh -c` `'source $ORACLE_HOME/wlserver/server/bin/setWLSEnv.sh > /dev/null 2>&1 && java weblogic.version'`
64+
65+
* Check the WLS patches with `docker run store/oracle/weblogic:12.2.1.3 sh -c` `'$ORACLE_HOME/OPatch/opatch lspatches'`
6166

6267
Additional information about using this image is available on the
6368
Docker store.

0 commit comments

Comments
 (0)