Skip to content

Commit 8935066

Browse files
author
Vince Kraemer
committed
add content to delete-domain/README.md
1 parent 5ecd8fd commit 8935066

File tree

1 file changed

+27
-1
lines changed
  • kubernetes/samples/scripts/delete-domain

1 file changed

+27
-1
lines changed
Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,27 @@
1-
**TODO** write me
1+
# Deleting domain resources created while executing the samples
2+
3+
After running the sample, you will need to release domain resources that
4+
can then be used for other purposes.
5+
6+
The script in this sample demonstrates one approach to releasing
7+
domain resources.
8+
9+
## Using the script to delete domain resources
10+
11+
```
12+
$ ./delete-weblogic-domain-resources.sh \
13+
-d domain-uid[,domain-uid...] \
14+
[-s max-seconds] \
15+
[-t]
16+
```
17+
The required option "-d" takes domain-uid values (separated
18+
by commas and no spaces) to identify the domain resources that should be deleted.
19+
20+
To limit the amount of time spent on attempting to delete domain resources, use "-s".
21+
The option must be followed by an integer that represents the total number of seconds
22+
that will be spent attempting to delete resources. The default number of seconds is 120.
23+
24+
To see the help associated with the script, enter
25+
```
26+
$ ./delete-weblogic-domain-resources.sh -h
27+
```

0 commit comments

Comments
 (0)