From 32829238831e687783047b359814b9839dfab64e Mon Sep 17 00:00:00 2001 From: erik Date: Thu, 21 Jul 2022 13:52:37 +0200 Subject: [PATCH] Remove appini-configmap from core --- src/main/cljc/dda/c4k_gitea/core.cljc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/cljc/dda/c4k_gitea/core.cljc b/src/main/cljc/dda/c4k_gitea/core.cljc index 2c3f743..492539c 100644 --- a/src/main/cljc/dda/c4k_gitea/core.cljc +++ b/src/main/cljc/dda/c4k_gitea/core.cljc @@ -8,8 +8,7 @@ (defn k8s-objects [config] (let [storage-class (if (contains? config :postgres-data-volume-path) :manual :local-path)] (cm/concat-vec - [(yaml/load-resource "gitea/volumes.yaml") - (yaml/load-resource "gitea/appini-configmap.yaml") + [(yaml/load-resource "gitea/volumes.yaml") (yaml/load-resource "gitea/deployment.yaml") (yaml/load-resource "gitea/services.yaml") (yaml/load-resource "gitea/traefik-middleware.yaml")]