Skip to content

Commit 78ec979

Browse files
authored
Merge pull request #367 from oracle/fix_pull366_comments
address review comments in pull 366
2 parents 12aad7b + b8f01dc commit 78ec979

19 files changed

+34
-20
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Copyright 2017, Oracle Corporation and/or its affiliates. All rights reserved.
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33

44
name: weblogic-domain
5-
version: 0.2.0
6-
description: Helm package for creation of Weblogic domain.
5+
version: 2.0
6+
description: Helm package for creation of WebLogic domain.

kubernetes/charts/weblogic-domain/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This chart creates a single Weblogic domain on a [Kubernetes](https://kubernetes
33
[Helm](https://github.com/kubernetes/helm) package manager.
44

55
## Prerequisites
6-
- Kubernetes 1.7.5+ with Beta APIs enabled
6+
- [Requirements for the Oracle WebLogic Server Kubernetes Operator](https://github.com/oracle/weblogic-kubernetes-operator/blob/master/README.md)
77

88
- Install [Helm](https://github.com/kubernetes/helm#install)
99

@@ -48,7 +48,7 @@ cd kubernetes/charts
4848
To install the chart with the release `my-release`, namespace `my-namespace` and secret `my-secret' without creating a weblogic domain (such as when a WebLogic domain already exists):
4949

5050
```bash
51-
helm install weblogic-domain --name my-release --namespace my-namespace --set weblogicCredentialsSecretName=my-secret --set createWeblogicDomain=false
51+
helm install weblogic-domain --name my-release --namespace my-namespace --set weblogicCredentialsSecretName=my-secret --set createWebLogicDomain=false
5252
```
5353

5454
The command deploys weblogic-domain on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists
@@ -69,7 +69,7 @@ The command removes all the Kubernetes components associated with the chart and
6969
## Configuration
7070
| Key | Description | Default |
7171
| -------------------------------|-----------------------------------|-----------------------|
72-
| createWeblogicDomain | Boolean indicating if a weblogic domain should be created | true |
72+
| createWebLogicDomain | Boolean indicating if a weblogic domain should be created | true |
7373
| adminPort | Port number for Admin Server | 7001 |
7474
| adminServerName | Name of the Admin Server | admin-server |
7575
| domainName | Name of the WebLogic domain to create | base_domain |

kubernetes/charts/weblogic-domain/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017, Oracle Corporation and/or its affiliates. All rights reserved.
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33

44
{{/* vim: set filetype=mustache: */}}

kubernetes/charts/weblogic-domain/templates/create-weblogic-domain-job.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Copyright 2017, 2018, Oracle Corporation and/or its affiliates. All rights reserved.
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
3-
{{- if .Values.createWeblogicDomain }}
3+
{{- if .Values.createWebLogicDomain }}
44
apiVersion: v1
55
kind: ConfigMap
66
metadata:
@@ -113,7 +113,7 @@ data:
113113
# Create the domain
114114
wlst.sh -skipWLSModuleScanning /u01/weblogic/create-domain.py
115115
116-
echo "Successfully Completed"
116+
echo "WebLogic domain configuration by create-domain-script.py successfully completed"
117117
118118
create-domain.py: |-
119119
# This python script is used to create a WebLogic domain
@@ -183,7 +183,7 @@ data:
183183
set('NativeVersionEnabled', 'true')
184184
set('StartScriptEnabled', 'false')
185185
set('SecureListener', 'false')
186-
set('LogLevel', 'FINEST')
186+
set('LogLevel', 'INFO')
187187
set('DomainsDirRemoteSharingEnabled', 'true')
188188
189189
# Set the Node Manager user name and password (domain name will change after writeDomain)

kubernetes/charts/weblogic-domain/templates/create-weblogic-domain-pv.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017, 2018, Oracle Corporation and/or its affiliates. All rights reserved.
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33

44
apiVersion: v1

kubernetes/charts/weblogic-domain/templates/create-weblogic-domain-pvc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017, 2018, Oracle Corporation and/or its affiliates. All rights reserved.
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33

44
kind: PersistentVolumeClaim

kubernetes/charts/weblogic-domain/templates/domain-custom-resource.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017, 2018, Oracle Corporation and/or its affiliates. All rights reserved.
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
33
#
44
# This is an example of how to define a Domain Custom Resource.

kubernetes/charts/weblogic-domain/templates/voyager-operator-security.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
13
{{- if eq .Values.loadBalancer "VOYAGER" }}
24
apiVersion: v1
35
kind: ServiceAccount

kubernetes/charts/weblogic-domain/templates/voyager-operator.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
13
{{- if eq .Values.loadBalancer "VOYAGER" }}
24
apiVersion: apps/v1beta1
35
kind: Deployment

kubernetes/charts/weblogic-domain/templates/weblogic-domain-apache-security.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright 2018, Oracle Corporation and/or its affiliates. All rights reserved.
2+
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
13
{{- if eq .Values.loadBalancer "APACHE" }}
24
---
35
kind: ClusterRole

0 commit comments

Comments
 (0)