Skip to content

Commit

Permalink
fix: fix compile error for kfp build task
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-s committed Oct 8, 2024
1 parent fa098ff commit 49bc866
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
package it.smartcommunitylabdhub.runtime.kfp.specs;

import io.swagger.v3.oas.annotations.media.Schema;
import it.smartcommunitylabdhub.commons.annotations.common.SpecType;
import it.smartcommunitylabdhub.commons.models.enums.EntityName;
import it.smartcommunitylabdhub.framework.k8s.base.K8sTaskBaseSpec;
import it.smartcommunitylabdhub.runtime.kfp.KFPRuntime;
import java.io.Serializable;
import java.util.Map;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@SpecType(runtime = KFPRuntime.RUNTIME, kind = KFPBuildTaskSpec.KIND, entity = EntityName.TASK)
public class KFPBuildTaskSpec extends K8sTaskBaseSpec {

Expand All @@ -25,5 +21,4 @@ public class KFPBuildTaskSpec extends K8sTaskBaseSpec {
public KFPBuildTaskSpec(Map<String, Serializable> data) {
configure(data);
}

}

0 comments on commit 49bc866

Please sign in to comment.