@@ -41,12 +41,6 @@ public class Configuration {
41
41
+ "Legal values are DYNAMIC (the default) and ON_RESTART. See also introspectVersion." )
42
42
private String overrideDistributionStrategy ;
43
43
44
- @ ApiModelProperty ("Use online update." )
45
- private Boolean useOnlineUpdate = false ;
46
-
47
- @ ApiModelProperty ("Rollback the changes if the update require domain restart." )
48
- private Boolean rollBackIfRestartRequired = false ;
49
-
50
44
@ ApiModelProperty ("Istio service mesh integration" )
51
45
private Istio istio ;
52
46
@@ -84,33 +78,6 @@ public void setOpss(Opss opss) {
84
78
this .opss = opss ;
85
79
}
86
80
87
- public Configuration rollBackIfRestartRequired (boolean rollBackIfRestartRequired ) {
88
- this .rollBackIfRestartRequired = rollBackIfRestartRequired ;
89
- return this ;
90
- }
91
-
92
- public Boolean getRollBackIfRestartRequired () {
93
- return rollBackIfRestartRequired ;
94
- }
95
-
96
- public void setRollBackIfRestartRequired (boolean rollBackIfRestartRequired ) {
97
- this .rollBackIfRestartRequired = rollBackIfRestartRequired ;
98
- }
99
-
100
- public Configuration useOnlineUpdate (boolean useOnlineUpdate ) {
101
- this .useOnlineUpdate = useOnlineUpdate ;
102
- return this ;
103
- }
104
-
105
- public Boolean getUseOnlineUpdate () {
106
- return useOnlineUpdate ;
107
- }
108
-
109
- public void setUseOnlineUpdate (boolean useOnlineUpdate ) {
110
- this .useOnlineUpdate = useOnlineUpdate ;
111
- }
112
-
113
-
114
81
public Configuration secrets (List <String > secrets ) {
115
82
this .secrets = secrets ;
116
83
return this ;
@@ -215,8 +182,6 @@ public String toString() {
215
182
.append ("secrets" , secrets )
216
183
.append ("overridesConfigMap" , overridesConfigMap )
217
184
.append ("introspectorJobActiveDeadlineSeconds" , introspectorJobActiveDeadlineSeconds )
218
- .append ("useOnlineUpdate" , useOnlineUpdate )
219
- .append ("rollBackIfRestartRequired" , rollBackIfRestartRequired )
220
185
.append ("istio" , istio );
221
186
222
187
return builder .toString ();
@@ -231,8 +196,6 @@ public int hashCode() {
231
196
.append (secrets )
232
197
.append (overridesConfigMap )
233
198
.append (introspectorJobActiveDeadlineSeconds )
234
- .append (useOnlineUpdate )
235
- .append (rollBackIfRestartRequired )
236
199
.append (istio );
237
200
238
201
return builder .toHashCode ();
@@ -255,8 +218,6 @@ public boolean equals(Object other) {
255
218
.append (secrets , rhs .secrets )
256
219
.append (overridesConfigMap , rhs .overridesConfigMap )
257
220
.append (introspectorJobActiveDeadlineSeconds , rhs .introspectorJobActiveDeadlineSeconds )
258
- .append (useOnlineUpdate , rhs .useOnlineUpdate )
259
- .append (rollBackIfRestartRequired , rhs .rollBackIfRestartRequired )
260
221
.append (istio , rhs .istio );
261
222
262
223
return builder .isEquals ();
0 commit comments