File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1414import io .fabric8 .kubernetes .api .model .ConfigMap ;
1515import io .fabric8 .kubernetes .api .model .HasMetadata ;
1616import io .fabric8 .kubernetes .api .model .Secret ;
17+ import io .fabric8 .kubernetes .api .model .apps .DaemonSet ;
1718import io .fabric8 .kubernetes .api .model .apps .Deployment ;
18- import io .fabric8 .kubernetes .api .model .apps .ReplicaSet ;
1919import io .fabric8 .kubernetes .api .model .apps .StatefulSet ;
2020import io .fabric8 .kubernetes .client .Config ;
2121import io .fabric8 .kubernetes .client .ConfigBuilder ;
@@ -468,7 +468,7 @@ default boolean previousAnnotationForDependentResourcesEventFiltering() {
468468 * @return blocklist of resource classes where the previous version annotation won't be used.
469469 */
470470 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 );
472472 }
473473
474474 /**
You can’t perform that action at this time.
0 commit comments