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