You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and anything else necessary to run the domain. Beginning with operator 4.0, WebLogic clusters that are within a WebLogic domain configuration may optionally be associated with a Cluster resource in addition to a Domain resource. This Cluster resource makes it simpler to scale the number of running member servers using `kubectl scale`, the Kubernetes built-in Horizontal Pod Autoscaling, or similar tools. These Cluster resources are only active if referenced by a Domain resource.
17
+
and anything else necessary to run the domain. Beginning with operator 4.0, WebLogic clusters that are within a WebLogic domain
18
+
configuration may optionally be associated with a Cluster resource in addition to a Domain resource. This Cluster resource makes it
19
+
simpler to scale the number of running member servers using `kubectl scale`, the Kubernetes built-in Horizontal Pod Autoscaling,
20
+
or similar tools. These Cluster resources are only active if referenced by a Domain resource. **Note:** This Cluster resource is a new
21
+
custom resource different from the Domain resource. In earlier operator versions, you specified the life cycle attributes of WebLogic clusters
22
+
in the Domain resource cluster section. Beginning with operator 4.0, the Domain resource cluster section references only the name of the Cluster resources;
23
+
all the life cycle attributes are specified in the new Cluster resource objects.
18
24
19
25
{{% notice tip %}}
20
26
Many of the samples accompanying the operator project include scripts to generate initial Domain and Cluster resources from a set of simplified inputs; however, these resources are the actual source of truth for how the operator will manage each WebLogic Server domain. You are encouraged to either start with the YAML files generated by the various samples, or create Domain and Cluster resources manually or by using other tools, based on the schema referenced here or in this documentation.
@@ -43,6 +49,7 @@ After you have written your YAML files, you use them to create your domain artif
43
49
44
50
```shell
45
51
$ kubectl apply -f domain-resource.yaml
52
+
$ kubectl apply -f cluster-resource.yaml
46
53
```
47
54
48
55
To confirm that the Domain and any Clusters were created, use this command:
0 commit comments