File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
kubernetes/samples/scripts/create-weblogic-domain/manually-create-domain Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,24 +4,24 @@ In some circumstances you may wish to manually create your domain custom resourc
4
4
Docker image containing your domain and the specific patches that you require, then this approach will probably
5
5
be most suitable for your needs.
6
6
7
- To create the domain custom resource, just make a copy of the sample [ domain.yaml] ( ./domain.yaml ) provided in
8
- this sample, and then edit it as per the instructions provided in the comments in that file.
7
+ To create the domain custom resource, just make a copy of the sample [ domain.yaml] ( ./domain.yaml ) , and then edit
8
+ it as per the instructions provided in the comments in that file.
9
9
When it is ready, you can create the domain in your Kubernetes cluster using the command:
10
10
11
11
```
12
- kubectl apply -f domain.yaml
12
+ $ kubectl apply -f domain.yaml
13
13
```
14
14
15
15
You can verify the domain custom resource was created using this command:
16
16
17
17
```
18
- kubectl -n YOUR_NAMESPACE get domains
18
+ $ kubectl -n YOUR_NAMESPACE get domains
19
19
```
20
20
21
21
You can view details of the domain using this command:
22
22
23
23
```
24
- kubectl -n YOUR_NAMESPACE describe domain YOUR_DOMAIN
24
+ $ kubectl -n YOUR_NAMESPACE describe domain YOUR_DOMAIN
25
25
```
26
26
27
27
In both of these commands, replace ` YOUR_NAMESPACE ` with the namespace that you created the domain in, and
You can’t perform that action at this time.
0 commit comments