File tree 1 file changed +2
-2
lines changed
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 14
14
import io .fabric8 .kubernetes .api .model .ConfigMap ;
15
15
import io .fabric8 .kubernetes .api .model .HasMetadata ;
16
16
import io .fabric8 .kubernetes .api .model .Secret ;
17
+ import io .fabric8 .kubernetes .api .model .apps .DaemonSet ;
17
18
import io .fabric8 .kubernetes .api .model .apps .Deployment ;
18
- import io .fabric8 .kubernetes .api .model .apps .ReplicaSet ;
19
19
import io .fabric8 .kubernetes .api .model .apps .StatefulSet ;
20
20
import io .fabric8 .kubernetes .client .Config ;
21
21
import io .fabric8 .kubernetes .client .ConfigBuilder ;
@@ -468,7 +468,7 @@ default boolean previousAnnotationForDependentResourcesEventFiltering() {
468
468
* @return blocklist of resource classes where the previous version annotation won't be used.
469
469
*/
470
470
default List <Class <? extends HasMetadata >> previousAnnotationUsageBlocklist () {
471
- return List .of (Deployment .class , StatefulSet .class , ReplicaSet .class );
471
+ return List .of (Deployment .class , StatefulSet .class , DaemonSet .class );
472
472
}
473
473
474
474
/**
You can’t perform that action at this time.
0 commit comments