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: site/developer.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,8 +76,12 @@ 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. /path/to/weblogic-operator-output-directory
# Choose and create a directory that generated weblogic operator related files will be stored in,
80
+
# e.g. /path/to/weblogic-operator-output-directory
81
+
82
+
./create-weblogic-operator.sh -g \
83
+
-i create-weblogic-operator-inputs.yaml \
84
+
-o /path/to/weblogic-operator-output-directory
81
85
```
82
86
83
87
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:
@@ -123,8 +127,12 @@ Verify that you have the right image by running `docker images | grep webloogic-
123
127
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:
124
128
125
129
```
126
-
# Choose and create a directory that generated weblogic operator related files will be stored in, e.g. /path/to/weblogic-operator-output-directory
Copy file name to clipboardExpand all lines: site/manually-creating-domain.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,12 @@ 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. /path/to/weblogic-operator-output-directory
0 commit comments