Fixes Airsonic (mostly)
Diff
providers.tf | 4 ++--
media/airsonic.tf | 5 +++++
2 files changed, 6 insertions(+), 3 deletions(-)
@@ -5,8 +5,8 @@
}
provider "kubernetes" {
version = "1.3.0-custom"
host = "https://k8s.bb8.fun:6443"
host = "https://k8s.bb8.fun:6443"
config_path = "${path.root}/k8s/auth/kubeconfig"
}
@@ -1,10 +1,11 @@
module "airsonic" {
source = "../modules/container"
image = "linuxserver/airsonic:latest"
name = "airsonic"
resource {
memory = "1024"
memory = "1024"
memory_swap = "1024"
}
web {
@@ -12,6 +13,8 @@
host = "airsonic.bb8.fun"
expose = true
}
networks = "${list(docker_network.media.id, data.docker_network.bridge.id)}"
env = [
"PUID=1004",