Skip to content

Commit 14f57e1

Browse files
committed
Merge branch 'master' into feature/dynamic-cluster
2 parents 88c9734 + a014a43 commit 14f57e1

6 files changed

+8
-7
lines changed

kubernetes/create-weblogic-domain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616

1717
script="${BASH_SOURCE[0]}"
18-
scriptDir="$( cd "$( dirname "${script}" )" && pwd )"
18+
scriptDir="$( cd "$(dirname "${script}")" > /dev/null 2>&1 ; pwd -P)"
1919
internalDir="${scriptDir}/internal"
2020

2121
# This is the script that the customers use to create a domain.

kubernetes/create-weblogic-operator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Licensed under the Universal Permissive License v 1.0 as shown at http://oss.oracle.com/licenses/upl.
44

55
script="${BASH_SOURCE[0]}"
6-
scriptDir="$( cd "$( dirname "${script}" )" && pwd )"
6+
scriptDir="$( cd "$(dirname "${script}")" > /dev/null 2>&1 ; pwd -P)"
77
internalDir="${scriptDir}/internal"
88

99
# This is the script that the customers use to create an operator.

site/name-changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ Similarly, the per-domain directory name is:
5050

5151
#### What If I Mess Up Creating a Domain or Operator And Want To Do It Again?
5252

53+
* Remove the resources that were created for the domain:
54+
* kubernetes/delete-weblogic-domain-resources.sh yourDomainUID
5355
* Remove the resources that were created for the operator:
5456
* kubectl delete -f weblogic-operator.yaml
5557
* kubectl delete -f weblogic-operator-security.yaml
56-
* Remove the resources that were created for the domain:
57-
* kubernetes/delete-weblogic-domain-resources.sh yourDomainUID
5858
* either remove the directory that was generated for that operator / domain, or remove the generated YAML files and the copy of the input file from it
5959
* make whatever changes you need in your inputs file
6060
* re-run the create script

src/test/scripts/unit-test-create-weblogic-domain.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# create domain script that generates the yaml files.
99

1010
script="${BASH_SOURCE[0]}"
11-
scriptDir="$( cd "$( dirname "${script}" )" && pwd )"
11+
scriptDir="$( cd "$(dirname "${script}")" > /dev/null 2>&1 ; pwd -P)"
1212
kubernetesDir="${scriptDir}/../../../kubernetes"
1313
internalDir="${kubernetesDir}/internal"
1414

src/test/scripts/unit-test-create-weblogic-operator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# used to actually run the operator.
1313

1414
script="${BASH_SOURCE[0]}"
15-
scriptDir="$( cd "$( dirname "${script}" )" && pwd )"
15+
scriptDir="$( cd "$(dirname "${script}")" > /dev/null 2>&1 ; pwd -P)"
1616
kubernetesDir="${scriptDir}/../../../kubernetes"
1717
internalDir="${kubernetesDir}/internal"
1818

src/test/scripts/unit-test-generate-weblogic-operator-cert.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ if [ ! $# -eq 1 ]; then
1818
exit 1
1919
fi
2020

21-
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
21+
script_dir="$( cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 ; pwd -P)"
22+
2223

2324
CERT_DIR="${script_dir}/weblogic-operator-cert"
2425
OP_PREFIX="weblogic-operator"

0 commit comments

Comments
 (0)