forked from oracle/weblogic-kubernetes-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclusterstartup.json
More file actions
31 lines (31 loc) · 1.16 KB
/
clusterstartup.json
File metadata and controls
31 lines (31 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"type": "object",
"javaType": "oracle.kubernetes.weblogic.domain.v1.ClusterStartup",
"description": "ClusterStartup describes the desired startup state and passed environment variables for a specific cluster server. Deprecated. Use the DomainSpec's clusters and clusterDefaults properties.",
"required": [
"clusterName"
],
"properties": {
"desiredState": {
"description": "Desired startup state for any managed server started in this cluster. Legal values are RUNNING or ADMIN.",
"type": "string"
},
"clusterName": {
"description": "Name of specific cluster to start. Managed servers in the cluster will be started beginning with replicas instances.",
"type": "string"
},
"replicas": {
"description": "Replicas is the desired number of managed servers running for this cluster.",
"type": "integer",
"format": "int32"
},
"env": {
"description": "Environment variables to pass while starting managed servers in this cluster.",
"type": "array",
"items": {
"javaType": "io.kubernetes.client.models.V1EnvVar",
"type": "object"
}
}
}
}