-
Notifications
You must be signed in to change notification settings - Fork 662
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andrew Dye <[email protected]>
- Loading branch information
1 parent
ed2f143
commit 1506281
Showing
5 changed files
with
24 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,44 +3,32 @@ package spark | |
import ( | ||
"context" | ||
"fmt" | ||
"regexp" | ||
"strconv" | ||
"strings" | ||
"time" | ||
|
||
sparkOp "github.com/GoogleCloudPlatform/spark-on-k8s-operator/pkg/apis/sparkoperator.k8s.io/v1beta2" | ||
Check failure on line 11 in flyteplugins/go/tasks/plugins/k8s/spark/spark.go GitHub Actions / compile
|
||
"google.golang.org/protobuf/types/known/structpb" | ||
v1 "k8s.io/api/core/v1" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/client-go/kubernetes/scheme" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
|
||
"strconv" | ||
|
||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog" | ||
|
||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/template" | ||
|
||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s/config" | ||
|
||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/errors" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/logs" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery" | ||
pluginsCore "github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core" | ||
|
||
<<<<<<< HEAD | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/core/template" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/flytek8s/config" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/k8s" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/tasklog" | ||
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/utils" | ||
======= | ||
v1 "k8s.io/api/core/v1" | ||
>>>>>>> flyteplugins/spark-pod-templates | ||
"k8s.io/client-go/kubernetes/scheme" | ||
|
||
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/k8s" | ||
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/utils" | ||
|
||
sparkOp "github.com/GoogleCloudPlatform/spark-on-k8s-operator/pkg/apis/sparkoperator.k8s.io/v1beta2" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
|
||
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" | ||
"github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/plugins" | ||
|
||
"regexp" | ||
"strings" | ||
"time" | ||
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/k8s" | ||
"github.com/flyteorg/flyteplugins/go/tasks/pluginmachinery/utils" | ||
) | ||
|
||
const KindSparkApplication = "SparkApplication" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters