Skip to content

Commit 2e1fc6e

Browse files
authored
Merge pull request #114 from oracle/zero-servers
Support NONE startup control option
2 parents e2b03b8 + 65fa811 commit 2e1fc6e

File tree

23 files changed

+1467
-787
lines changed

23 files changed

+1467
-787
lines changed

src-generated-swagger/main/java/oracle/kubernetes/operator/domain/model/oracle/kubernetes/weblogic/domain/v1/DomainSpec.java

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -294,20 +294,21 @@ public DomainSpec startupControl(String startupControl) {
294294
}
295295

296296
/**
297-
* Controls which managed servers will be started. Legal values are ADMIN, ALL,
298-
* SPECIFIED or AUTO. Defaults to AUTO. ADMIN indicates that only the
299-
* administration server is started. ALL indicates that all servers in the
300-
* domain will be started. SPECIFIED indicates that the administration server is
301-
* started and then additionally only those servers listed under serverStartup
302-
* or managed servers belonging to clusters listed under clusterStartup up to
303-
* the cluster's replicas field will be started. AUTO indicates that servers
304-
* will be started exactly as with SPECIFIED, but then managed servers belonging
305-
* to clusters not listed under clusterStartup will be started up to the
306-
* replicas field.
297+
* Controls which managed servers will be started. Legal values are NONE,
298+
* ADMIN, ALL, SPECIFIED or AUTO. Defaults to AUTO. NONE indicates that no
299+
* servers, including the administration server, will be started. ADMIN
300+
* indicates that only the administration server is started. ALL indicates
301+
* that all servers in the domain will be started. SPECIFIED indicates that
302+
* the administration server is started and then additionally only those
303+
* servers listed under serverStartup or managed servers belonging to
304+
* clusters listed under clusterStartup up to the cluster's replicas field
305+
* will be started. AUTO indicates that servers will be started exactly as
306+
* with SPECIFIED, but then managed servers belonging to clusters not listed
307+
* under clusterStartup will be started up to the replicas field.
307308
*
308309
* @return startupControl
309310
**/
310-
@ApiModelProperty(value = "Controls which managed servers will be started. Legal values are ADMIN, ALL, SPECIFIED or AUTO. Defaults to AUTO. ADMIN indicates that only the administration server is started. ALL indicates that all servers in the domain will be started. SPECIFIED indicates that the administration server is started and then additionally only those servers listed under serverStartup or managed servers belonging to clusters listed under clusterStartup up to the cluster's replicas field will be started. AUTO indicates that servers will be started exactly as with SPECIFIED, but then managed servers belonging to clusters not listed under clusterStartup will be started up to the replicas field.")
311+
@ApiModelProperty(value = "Controls which managed servers will be started. Legal values are NONE, ADMIN, ALL, SPECIFIED or AUTO. Defaults to AUTO. NONE indicates that no servers, including the administration server, will be started. ADMIN indicates that only the administration server is started. ALL indicates that all servers in the domain will be started. SPECIFIED indicates that the administration server is started and then additionally only those servers listed under serverStartup or managed servers belonging to clusters listed under clusterStartup up to the cluster's replicas field will be started. AUTO indicates that servers will be started exactly as with SPECIFIED, but then managed servers belonging to clusters not listed under clusterStartup will be started up to the replicas field.")
311312
public String getStartupControl() {
312313
return startupControl;
313314
}

0 commit comments

Comments
 (0)