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