-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* perf: type checking imports to increase perf * feat: moving mini k8s and k8s job * fix: lesser sensitive git errors
- Loading branch information
1 parent
6dc0264
commit cea2470
Showing
13 changed files
with
207 additions
and
73 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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
job-executor: | ||
type: "mini-k8s-job" | ||
config: | ||
mock: true | ||
jobSpec: | ||
# activeDeadlineSeconds: Optional[int] | ||
# selector: Optional[LabelSelector] | ||
# ttlSecondsAfterFinished: Optional[int] | ||
template: | ||
# metadata: | ||
# annotations: Optional[Dict[str, str]] | ||
# generate_name: Optional[str] = run_id | ||
# namespace: Optional[str] = "default" | ||
spec: | ||
# activeDeadlineSeconds: Optional[int] | ||
# nodeSelector: Optional[Dict[str, str]] | ||
# tolerations: Optional[List[Toleration]] | ||
# volumes: | ||
# - name: str | ||
# hostPath: | ||
# path: str | ||
# serviceAccountName: Optional[str] | ||
# restartPolicy: Optional[str] = Choose from [Always, OnFailure, Never] | ||
container: | ||
# command: List[str] | ||
# env: | ||
# - name: str | ||
# value: str | ||
image: runnable-m1 | ||
# imagePullPolicy: Optional[str] = choose from [Always, Never, IfNotPresent] | ||
# resources: | ||
# limits: | ||
# cpu: str | ||
# memory: str | ||
# gpu: str | ||
# requests: | ||
# cpu: str | ||
# memory: str | ||
# gpu: str | ||
# volumeMounts: | ||
# - name: str | ||
# mountPath: str |
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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# ruff: noqa | ||
|
||
|
||
import logging | ||
import os | ||
from logging.config import dictConfig | ||
|
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
Oops, something went wrong.