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
bash-4.2$ kubectl get clusterrolebindings |grep apache
392
-
393
234
domain1-apache-webtier 2h
394
-
395
235
```
396
236
397
-
398
237
### Use your own plugin WL module configuration
399
238
400
-
401
239
You can fine tune the behavior of the Apache plugin by providing your own Apache plugin configuration. You put your `custom_mod_wl_apache.conf` file in a local directory, for example, `<host-config-dir>` , and specify this location in the `create-weblogic-domain-inputs.yaml` file as follows:
402
240
403
241
```
404
-
405
242
# Docker volume path for APACHE
406
-
407
243
# By default, the VolumePath is empty, which will cause the volume mount be disabled
408
-
409
244
loadBalancerVolumePath: <host-config-dir>
410
-
411
245
```
412
246
413
247
After the `loadBalancerVolumePath` property is specified, the `create-weblogic-domain.sh` script will use the `custom_mod_wl_apache.conf` file in `<host-config-dir>` directory to replace what is in the Docker image.
414
248
415
249
The generated YAML files will look similar except with un-commented entries like below:
416
250
417
251
```
418
-
419
252
volumes:
420
-
421
253
- name: "domain1-apache-webtier"
422
-
423
254
hostPath:
424
-
425
255
path: <host-config-dir>
426
-
427
256
containers:
428
-
429
257
- name: domain1-apache-webtier
430
-
431
258
image: store/oracle/apache:12.2.1.3
432
-
433
259
imagePullPolicy: Never
434
-
435
260
volumeMounts:
436
-
437
261
- name: "domain1-apache-webtier"
438
-
439
262
mountPath: "/config"
440
-
441
263
```
442
264
443
-
444
-
445
265
## Use the Apache load balancer with a manually created WebLogic Domain
446
266
447
267
If your WebLogic domain is not created by the WebLogic Operator, you need to manually create and start all Kubernetes' resources for the Apache HTTP Server.
Copy file name to clipboardExpand all lines: site/v1.0/creating-domain.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
@@ -1,3 +1,5 @@
1
+
> **WARNING** This documentation is for version 1.0 of the operator. To view documenation for the current release, [please click here](/site).
2
+
1
3
# Creating a WebLogic domain
2
4
3
5
The WebLogic domain must be installed into the folder that will be mounted as `/shared/domain`. The recommended approach is to use the provided `create-weblogic-domain.sh` script; however, instructions are also provided for manually installing and configuring a WebLogic domain (see [Manually creating a domain](manually-creating-domain.md)).
Copy file name to clipboardExpand all lines: site/v1.0/database.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
@@ -1,3 +1,5 @@
1
+
> **WARNING** This documentation is for version 1.0 of the operator. To view documenation for the current release, [please click here](/site).
2
+
1
3
# Running the Oracle Database in Kubernetes
2
4
3
5
**PLEASE NOTE**: This page is a work in progress. We will update this with either better details about how to put the data files onto a persistent volume, or a pointer to the official Oracle Database Kubernetes pages, or both.
0 commit comments