Skip to content

Commit c136a97

Browse files
authored
Merge pull request #71 from oracle/jpatt/specify-namespace-when-removing-domain
Added Rose's comment wrt need to specify namespace when removing a do…
2 parents c2921cf + d281f86 commit c136a97

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The operator can configure services to expose WebLogic applications and features
5252
* How will users authenticate?
5353
* Is the network channel encrypted?
5454

55-
While it is natural to expose web applications outside the cluster, exposing administrative features like the administration console and a T3 channel for WLST should be given more careful consideration. There are alternative options that should be weighed. For example, Kubernetes provides the ability to securely access a shell running in a container in a pod in the cluster. WLST could be executed from such an environment, meaning the T3 communications are entirely within the Kubernetes cluster and therefore more secure.
55+
While it is natural to expose web applications outside the cluster, exposing administrative features like the Administration Console and a T3 channel for WLST should be given more careful consideration. There are alternative options that should be weighed. For example, Kubernetes provides the ability to securely access a shell running in a container in a pod in the cluster. WLST could be executed from such an environment, meaning the T3 communications are entirely within the Kubernetes cluster and therefore more secure.
5656

5757
Oracle recommends careful consideration before deciding to expose any administrative interfaces externally.
5858

@@ -73,10 +73,10 @@ The following features are not certified or supported in the Technology Preview
7373

7474
* Whole Server Migration
7575
* Consensus Leasing
76-
* Node Manager (although it is used internally for the liveness probe and to start WebLogic servers)
76+
* Node Manager (although it is used internally for the liveness probe and to start WebLogic Server instances)
7777
* Dynamic domains (the current certification only covers configured clusters, certification of dynamic clusters is planned at a future date)
7878
* Multicast
79-
* If using a `hostPath` persistent volume, then it must have read/write/many permissions for all container/pods in the WebLogic deployment
79+
* If using a `hostPath` persistent volume, then it must have read/write/many permissions for all container/pods in the WebLogic Server deployment
8080
* Multitenancy
8181
* Production redeployment
8282

@@ -97,11 +97,11 @@ Documentation for APIs is provided here:
9797
If you would rather see the developers demonstrating the operator rather than reading the documentation, then here are your videos:
9898

9999
* [Installing the operator](https://youtu.be/B5UmY2xAJnk) includes the installation and also shows using the operator's REST API.
100-
* [Creating a WebLogic domain with the operator](https://youtu.be/Ey7o8ldKv9Y) shows creation of two WebLogic domains including accessing the administration console and looking at the various resources created in Kubernetes - services, Ingresses, pods, load balancers, etc.
100+
* [Creating a WebLogic domain with the operator](https://youtu.be/Ey7o8ldKv9Y) shows creation of two WebLogic domains including accessing the Administration Console and looking at the various resources created in Kubernetes - services, Ingresses, pods, load balancers, etc.
101101
* [Deploying a web application, scaling a WebLogic cluster with the operator and verifying load balancing](https://youtu.be/hx4OPhNFNDM)
102102
* [Using WLST against a domain running in Kubernetes](https://youtu.be/eY-KXEk8rI4) shows how to create a data source for an Oracle database that is also running in Kubernetes.
103103
* [Scaling a WebLogic cluster with WLDF](https://youtu.be/Q8iZi2e9HvU)
104-
* watch this space, more to come!
104+
* Watch this space, more to come!
105105

106106
Like what you see? Read on for all the nitty-gritty details...
107107

@@ -157,10 +157,10 @@ Please refer to [Scaling a WebLogic cluster](site/scaling.md) for more informati
157157

158158
Please refer to [Shutting down a domain](site/shutdown-domain.md) for information about how to shut down a domain running in Kubernetes.
159159

160-
## Load balancing with the Traefik ingress controller
160+
## Load balancing with the Traefik Ingress controller
161161

162162
The initial Technology Preview release of the operator supports only the Traefik load balancer/Ingress controller. Support for other load balancers is planned in the future.
163-
Please refer to [Load balancing with the Traefik ingress controller](site/traefik.md) for information about current capabilities.
163+
Please refer to [Load balancing with Traefik](site/traefik.md) for information about current capabilities.
164164

165165
[comment]: # (Exporting operator logs to ELK. The operator provides an option to export its log files to the ELK stack. Please refer to [ELK integration]site/elk.md for information about this capability.)
166166

@@ -169,11 +169,11 @@ Please refer to [Load balancing with the Traefik ingress controller](site/traefi
169169
To permanently remove a domain from a Kubernetes cluster, first shut down the domain using the instructions provided above in the section titled “Shutting down a domain”, then remove the persistent volume claim and the persistent volume using these commands:
170170

171171
```
172-
kubectl delete pvc PVC-NAME
172+
kubectl delete pvc PVC-NAME -n NAMESPACE
173173
kubectl delete pv PV-NAME
174174
```
175175

176-
Find the names of the persistent volume claim and the persistent volume in the domain custom resource YAML file, or if it is not available, check for the `domainUID` in the metadata on the persistent volumes.
176+
Find the names of the persistent volume claim (represented above as `PVC-NAME`) and the persistent volume (represented as `PV-NAME`) in the domain custom resource YAML file, or if it is not available, check for the `domainUID` in the metadata on the persistent volumes. Replace `NAMESPACE` with the namespace that the operator is running in.
177177

178178
To permanently delete the actual domain configuration, delete the physical volume using the appropriate tools. For example, if the persistent volume used the `HostPath provider`, then delete the corresponding directory on the Kubernetes master.
179179

0 commit comments

Comments
 (0)