Skip to content

Commit

Permalink
refactor(k8s): split container build module up
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald authored and thsig committed Feb 9, 2021
1 parent 41f519d commit c9d0a58
Show file tree
Hide file tree
Showing 13 changed files with 797 additions and 713 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ import { apply } from "../kubectl"
import { waitForResources } from "../status/status"
import { execInWorkload } from "../container/exec"
import { dedent, deline } from "../../../util/string"
import { buildSyncDeploymentName, getDockerDaemonPodRunner } from "../container/build"
import { buildSyncDeploymentName } from "../container/build/common"
import { getDeploymentPod } from "../util"
import { getSystemNamespace } from "../namespace"
import { PluginContext } from "../../../plugin-context"
import { PodRunner } from "../run"
import { getDockerDaemonPodRunner } from "../container/build/cluster-docker"

const workspaceSyncDirTtl = 0.5 * 86400 // 2 days

Expand Down
1 change: 1 addition & 0 deletions core/src/plugins/kubernetes/container/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!build
Loading

0 comments on commit c9d0a58

Please sign in to comment.