🏡 index : github.com/captn3m0/nebula.git

author Nemo <me@captnemo.in> 2019-02-20 0:52:09.0 +05:30:00
committer Nemo <me@captnemo.in> 2019-02-20 0:52:09.0 +05:30:00
commit
995fb96611b28c5423a83bdcdeee463b1292bf0a [patch]
tree
6462f2298696155dc0f1dce1e32cdfcfa5674e3c
parent
435e166cd944676f805fa606b71d471a66c48557
download
995fb96611b28c5423a83bdcdeee463b1292bf0a.tar.gz

Fixes Airsonic (mostly)



Diff

 providers.tf      | 4 ++--
 media/airsonic.tf | 5 +++++
 2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/providers.tf b/providers.tf
index c9eedb8..b112836 100644
--- a/providers.tf
+++ a/providers.tf
@@ -5,8 +5,8 @@
}

provider "kubernetes" {

  version = "1.3.0-custom"
  host    = "https://k8s.bb8.fun:6443"
  # version = "1.3.0-custom"
  host = "https://k8s.bb8.fun:6443"

  config_path = "${path.root}/k8s/auth/kubeconfig"
}
diff --git a/media/airsonic.tf b/media/airsonic.tf
index 8de3640..d45f0d4 100644
--- a/media/airsonic.tf
+++ a/media/airsonic.tf
@@ -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",