Skip to content

Commit 962b926

Browse files
committed
wip
1 parent 72aed80 commit 962b926

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

site/scaling.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
**TODO** review and update
2-
31
# Scaling a WebLogic cluster
42

53
WebLogic Server supports two types of clustering configurations, configured and dynamic. Configured clusters are created by manually configuring each individual Managed Server instance. In dynamic clusters, the Managed Server configurations are generated from a single, shared template.  With dynamic clusters, when additional server capacity is needed, new server instances can be added to the cluster without having to manually configure them individually. Also, unlike configured clusters, scaling up of dynamic clusters is not restricted to the set of servers defined in the cluster but can be increased based on runtime demands. For more information on how to create, configure, and use dynamic clusters in WebLogic Server, see [Dynamic Clusters](https://docs.oracle.com/middleware/1221/wls/CLUST/dynamic_clusters.htm#CLUST678).
@@ -18,7 +16,7 @@ The operator provides several ways to initiate scaling of WebLogic clusters, inc
1816
## On-demand, updating the domain resource directly
1917
The easiest way to scale a WebLogic cluster in Kubernetes is to simply edit the `replicas` property within a domain resource. This can be done by using the `kubectl` command-line interface for running commands against Kubernetes clusters. More specifically, you can modify the domain resource directly by using the `kubectl edit` command. For example:
2018
```
21-
kubectl edit domain domain1 -n [namespace]
19+
$ kubectl edit domain domain1 -n [namespace]
2220
```
2321
Here we are editing a domain resource named 'domain1'. The `kubectl edit` command will open the domain resource definition in an editor and allow you to modify the `replicas` value directly. Once committed, the operator will be notified of the change and will immediately attempt to scale the corresponding dynamic cluster by reconciling the number of running pods/Managed Server instances with the `replicas` value specification.
2422
```

0 commit comments

Comments
 (0)