From d83b384504afaca14ea6f50c72a75d8cb0ca100d Mon Sep 17 00:00:00 2001 From: red Date: Wed, 9 Apr 2025 12:10:34 -0400 Subject: [PATCH] restructure templates --- .woodpecker/deploy.yaml | 6 +++--- .../{deployment.yaml.template => templates/deployment.yaml} | 0 .../{deployment.yaml.template => templates/deployment.yaml} | 0 .../{deployment.yaml.template => templates/deployment.yaml} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename manifests/pleroma/{deployment.yaml.template => templates/deployment.yaml} (100%) rename manifests/privoxy/{deployment.yaml.template => templates/deployment.yaml} (100%) rename manifests/tor/{deployment.yaml.template => templates/deployment.yaml} (100%) diff --git a/.woodpecker/deploy.yaml b/.woodpecker/deploy.yaml index 00fbb0b..2e580d3 100644 --- a/.woodpecker/deploy.yaml +++ b/.woodpecker/deploy.yaml @@ -63,7 +63,7 @@ steps: - pwd - kubectl apply -Rf manifests/tor # TODO: fix this - - envsubst < manifests/tor/deployment.yaml.template | kubectl apply -f - + - envsubst < manifests/tor/templates/deployment.yaml | kubectl apply -f - privoxy: image: cr.forge.lan/alk8s/alk8s pull: true @@ -77,7 +77,7 @@ steps: - pwd - kubectl apply -Rf manifests/privoxy # TODO: fix this - - envsubst < manifests/privoxy/deployment.yaml.template | kubectl apply -f - + - envsubst < manifests/privoxy/templates/deployment.yaml | kubectl apply -f - pleroma: image: cr.forge.lan/alk8s/alk8s:latest pull: true @@ -91,4 +91,4 @@ steps: - pwd - kubectl apply -Rf manifests/pleroma # TODO: fix this - - envsubst < manifests/pleroma/deployment.yaml.template | kubectl apply -f - \ No newline at end of file + - envsubst < manifests/pleroma/templates/deployment.yaml | kubectl apply -f - \ No newline at end of file diff --git a/manifests/pleroma/deployment.yaml.template b/manifests/pleroma/templates/deployment.yaml similarity index 100% rename from manifests/pleroma/deployment.yaml.template rename to manifests/pleroma/templates/deployment.yaml diff --git a/manifests/privoxy/deployment.yaml.template b/manifests/privoxy/templates/deployment.yaml similarity index 100% rename from manifests/privoxy/deployment.yaml.template rename to manifests/privoxy/templates/deployment.yaml diff --git a/manifests/tor/deployment.yaml.template b/manifests/tor/templates/deployment.yaml similarity index 100% rename from manifests/tor/deployment.yaml.template rename to manifests/tor/templates/deployment.yaml