Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions infra/tf/k8s_cluster_k3d/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,6 @@ locals {
resource "k3d_cluster" "main" {
name = "rivet-${var.namespace}"

# Mount repository in to k3d so we can access the built binaries
volume {
source = var.cargo_target_dir
destination = "/target"
node_filters = ["server:0"]
}

# Mount the /nix/store and /local since the build binaries depend on dynamic libs from there
volume {
source = "/nix/store"
destination = "/nix/store"
node_filters = ["server:0"]
}

volume {
source = "/local"
destination = "/local"
node_filters = ["server:0"]
}

# HTTP
port {
host = "0.0.0.0"
Expand Down