From 1b9f9c0293abc87f0e8a5bdf7cda319b8a0fca19 Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 2 Nov 2023 17:35:24 -0400 Subject: [PATCH] Remove tang container files We run our tang based tests via Packit, and so no longer needed to maintain the containerized tang server. Signed-off-by: mulhern --- container_files/Containerfile-tang | 8 -------- container_files/Makefile | 17 ----------------- 2 files changed, 25 deletions(-) delete mode 100644 container_files/Containerfile-tang delete mode 100644 container_files/Makefile diff --git a/container_files/Containerfile-tang b/container_files/Containerfile-tang deleted file mode 100644 index 44dbe49..0000000 --- a/container_files/Containerfile-tang +++ /dev/null @@ -1,8 +0,0 @@ -FROM fedora:38 - -RUN dnf install -y systemd tang -RUN systemctl enable tangd.socket - -EXPOSE 80 - -CMD /usr/lib/systemd/systemd diff --git a/container_files/Makefile b/container_files/Makefile deleted file mode 100644 index 7a9fce2..0000000 --- a/container_files/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -FEDORA_RELEASE=38 -build: - podman build . \ - --file Containerfile-tang \ - --tag ghcr.io/stratis-storage/stratisd/tang:${FEDORA_RELEASE} - -GITHUB_USERNAME ?= -GITHUB_API_KEY ?= -test-creds: - echo "Testing that GITHUB_USERNAME and GITHUB_API_KEY environment variables are non-empty" - @test "${GITHUB_USERNAME}" - @test "${GITHUB_API_KEY}" - -push: test-creds - podman push \ - --creds=${GITHUB_USERNAME}:${GITHUB_API_KEY} \ - ghcr.io/stratis-storage/stratisd/tang:${FEDORA_RELEASE}