chore(deadcode): remove containerized cloudflared references
This commit is contained in:
parent
1770d26bad
commit
9a068d849d
6 changed files with 0 additions and 32 deletions
4
pod.sh
4
pod.sh
|
@ -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
|
|
@ -1,3 +0,0 @@
|
|||
FROM cloudflare/cloudflared:2023.10.0
|
||||
|
||||
CMD ["tunnel", "run"]
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
source constants.sh
|
||||
|
||||
podman build -t $APP_IMAGE_NAME:$IMAGE_VERSION -f Dockerfile-bastion-app .
|
|
@ -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
|
|
@ -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
|
|
@ -1,5 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
source constants.sh
|
||||
|
||||
podman rm -f $APP_CONTAINER_NAME
|
Reference in a new issue