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
* Create a directory for the generated Kubernetes YAML files for this domain. The pathname is $OUTPUT_DIR/weblogic-domains/<domainUID parameter from create-weblogic-domain-inputs.yaml.
150
+
* Create a directory for the generated Kubernetes YAML files for this domain. The pathname is /path/to/weblogic-operator-output-directory/weblogic-domains/<domainUID parameter from create-weblogic-domain-inputs.yaml.
153
151
* Create Kubernetes YAML files based on the provided inputs.
154
152
* Create a persistent volume for the shared state.
155
153
* Create a persistent volume claim for that volume.
Copy file name to clipboardExpand all lines: site/developer.md
+6-10Lines changed: 6 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,16 +76,14 @@ To run the tests, uncomment the following `execution` element in the `pom.xml` f
76
76
These tests assume that the RBAC definitions exist on the Kubernetes cluster. To create them, update the inputs file and run the operator installation script with the "generate only" option as shown below (see the [installation](installation.md) page for details about this script and the inputs):
77
77
78
78
```
79
-
# Choose and create a directory that generated weblogic operator related files will be stored in, e.g. /scratch/user-projects:
This will create a file called `$OUTPUT_DIR/weblogic-operators/weblogic-operator/weblogic-operator-security.yaml`, which you will need to apply to your cluster:
83
+
This will create a file called `/path/to/weblogic-operator-output-directory/weblogic-operators/weblogic-operator/weblogic-operator-security.yaml`, which you will need to apply to your cluster:
After this is done, and the `execution` is uncommented, the tests will run against your cluster.
@@ -125,10 +123,8 @@ Verify that you have the right image by running `docker images | grep webloogic-
125
123
To create the Kuberentes YAML file to deploy the operator, update the inputs file (`create-weblogic-operator-inputs.yaml`) and make sure the `imagePullPolicy` is set to `Never` and the `image` matches the name you used in your `docker build` command. Then run the operator installation script to deploy the operator:
126
124
127
125
```
128
-
# Choose and create a directory that generated weblogic operator related files will be stored in, e.g. /scratch/user-projects:
* Create a directory for the generated Kubernetes YAML files for this operator. The pathname is $OUTPUT_DIR/weblogic-operators/<namespace parameter from create-weblogic-operator-inputs.yaml.
133
+
* Create a directory for the generated Kubernetes YAML files for this operator. The pathname is /path/to/weblogic-operator-output-directory/weblogic-operators/<namespace parameter from create-weblogic-operator-inputs.yaml.
136
134
* A set of Kubernetes YAML files will be created from the inputs provided in this directory.
137
135
* A namespace will be created for the operator.
138
136
* A service account will be created in that namespace.
Copy file name to clipboardExpand all lines: site/manually-creating-domain.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,11 @@ If creating the domain manually, using a WLST script for example, the domain mus
14
14
The `create-weblogic-domain.sh` script described in the previous section can be executed with the “-g” option, which will cause it to generate the YAML files but take no action at all against the Kubernetes environment. This is a useful way to create the sample YAML files needed to manually create a domain. Execute the script as follows:
15
15
16
16
```
17
-
# Choose and create a directory that generated weblogic operator related files will be stored in, e.g. /scratch/user-projects:
0 commit comments