chore(deadcode): remove containerized cloudflared references

This commit is contained in:
Marc 2024-03-31 15:09:20 -04:00
parent 1770d26bad
commit 9a068d849d
Signed by: marc
GPG key ID: 048E042F22B5DC79
6 changed files with 0 additions and 32 deletions

4
pod.sh
View file

@ -1,4 +0,0 @@
#!/bin/bash
podman pod exists services || true
test $? -eq 0 || podman pod create -p 8080:8080 -p 6881:6881/udp -p 6881:6881 -p 8112:8112 services

View file

@ -1,3 +0,0 @@
FROM cloudflare/cloudflared:2023.10.0
CMD ["tunnel", "run"]

View file

@ -1,5 +0,0 @@
#!/bin/bash
source constants.sh
podman build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bastion-app .

View file

@ -1,5 +0,0 @@
#!/bin/bash
export APP_NAME="bastion"
export APP_CONTAINER_NAME=$APP_NAME-app
export APP_IMAGE_NAME=$CONTAINER_NAME_PREFIX-$APP_CONTAINER_NAME

View file

@ -1,10 +0,0 @@
#!/bin/bash
source constants.sh
podman run \
--detach \
--pod services \
--name $APP_CONTAINER_NAME \
--env-file $ENV_FILE_DIR/bastion.env \
$APP_IMAGE_NAME:$IMAGE_VERSION

View file

@ -1,5 +0,0 @@
#!/bin/bash
source constants.sh
podman rm -f $APP_CONTAINER_NAME