Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

eCR Viewer setup script + variable pattern setting 🖌️ #51

Merged
merged 20 commits into from
Mar 3, 2025
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2afb855
wip
alismx Feb 24, 2025
81a6d84
feat: Update environment vars configurations and services version in …
alismx Feb 25, 2025
cb2bede
feat: Update docker compose files with dynamic version, refactor fold…
alismx Feb 26, 2025
292d071
feat(workflows): add multiple packer build jobs and improve file orga…
alismx Feb 26, 2025
9900a9f
refactor: rename 'packer_build_main' to 'packer_build' in GitHub acti…
alismx Feb 26, 2025
ac3c5b6
feat: parameterize service name in docker compose file
alismx Feb 26, 2025
98511df
feat: add workflow_dispatch event to packMachines.yml
alismx Feb 26, 2025
0b98659
feat: append dibbs_version to vm_name in ubuntu server config
alismx Feb 26, 2025
3f80641
feat: update output directory path in ubuntu.pkr.hcl config file
alismx Feb 26, 2025
da2b1ed
feat: modify output directory path in packer config
alismx Feb 26, 2025
b38253c
feat(docker): update environment variable management in dibbs-ecr-viewer
alismx Feb 28, 2025
9b732ed
feat(docker): add service and version details to ecr viewer, modify b…
alismx Feb 28, 2025
9bc52ba
feat: enhance configuration for ecr-viewer and update build script
alismx Feb 28, 2025
e8028b4
chore(docker): remove trailing spaces and export environment variables
alismx Feb 28, 2025
ae56369
feat: Export env variables for docker compose and persist reboot
alismx Feb 28, 2025
d425339
chore: clean up environment variables in ecr-viewer.env
alismx Feb 28, 2025
71b2aa9
refactor: rename environment files and script variables to match new …
alismx Mar 1, 2025
6c66db2
refactor: rename environment files and update references in .gitignor…
alismx Mar 1, 2025
32e5216
feat: refactor packer workflow and remove redundant variable declarat…
alismx Mar 3, 2025
3591b1f
docs: correct typo in wizard.sh comment about clear_dot_env function
alismx Mar 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/dibbsVm.yml
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ permissions:
contents: read

jobs:

build:
runs-on: ubuntu-latest

@@ -25,11 +26,7 @@ jobs:
echo "::set-output name=version::$version"

- name: Build dibbs-vm for dibbs-ecr-viewer
if: ${{ steps.extract.outputs.service == 'dibbs-ecr-viewer' }}
run: |
echo "Building dibbs-vm version ${{ steps.extract.outputs.version }} for ${{ steps.extract.outputs.service }}"

- name: Build dibbs-vm for dibbs-query-connector
if: ${{ steps.extract.outputs.service == 'dibbs-query-connector' }}
run: |
echo "Building dibbs-vm version ${{ steps.extract.outputs.version }} for ${{ steps.extract.outputs.service }}"
uses: ./.github/workflows/packMachines.yml
with:
service: ${{ steps.extract.outputs.service }}
version: ${{ steps.extract.outputs.version }}
92 changes: 76 additions & 16 deletions .github/workflows/packMachines.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,22 @@ on:
push:
branches:
- main
workflow_call:
inputs:
service:
required: true
type: string
version:
required: true
type: string
workflow_dispatch:
inputs:
service:
required: true
type: string
version:
required: true
type: string

permissions:
contents: read
@@ -19,16 +35,17 @@ jobs:
what_to_check: ./packer
uses: ./.github/workflows/checkForChanges.yml

packer_build:
if: needs.workflow_changes.outputs.has_changes == 'true' || needs.packer_changes.outputs.has_changes == 'true'
packer_build_main:
if: (needs.workflow_changes.outputs.has_changes == 'true' || needs.packer_changes.outputs.has_changes == 'true') && (github.event_name == 'push')
runs-on: ubuntu-latest
strategy:
matrix:
include:
- provisioners: ${{ inputs.provisioners }}
- services: ['dibbs-ecr-viewer', 'dibbs-query-connector']
steps:
- uses: actions/checkout@v4

- name: Set up Packer
uses: hashicorp/setup-packer@1aa358be5cf73883762b302a3a03abd66e75b232
with:
@@ -38,19 +55,62 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25

- name: Run `packer init`
working-directory: ./packer
id: init
run: "packer init ./ubuntu.pkr.hcl"
# dibbs-ecr-viewer
- name: Run `packer init dibbs-ecr-viewer`
working-directory: ./packer/ubuntu-server
run: packer init .

- name: Run `packer validate`
working-directory: ./packer
id: validate
run: "packer validate ./ubuntu.pkr.hcl"
- name: Run `packer validate dibbs-ecr-viewer`
working-directory: ./packer/ubuntu-server
run: packer validate --var dibbs_service=dibbs-ecr-viewer --var dibbs_version=main .

- name: Run `packer build dibbs-ecr-viewer`
working-directory: ./packer/ubuntu-server
run: packer build --var dibbs_service=dibbs-ecr-viewer --var dibbs_version=main .

# dibbs-query-connector
- name: Run `packer init dibbs-query-connector`
working-directory: ./packer/ubuntu-server
run: packer init .

- name: Run `packer validate dibbs-query-connector`
working-directory: ./packer/ubuntu-server
run: packer validate --var dibbs_service=dibbs-query-connector --var dibbs_version=main .

- name: Run `packer build dibbs-query-connector`
working-directory: ./packer/ubuntu-server
run: packer build --var dibbs_service=dibbs-query-connector --var dibbs_version=main .

packer_build_workflows:
if: (needs.workflow_changes.outputs.has_changes == 'true' || needs.packer_changes.outputs.has_changes == 'true') && (github.event_name == 'workflow_call' || github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest
strategy:
matrix:
include:
- provisioners: ${{ inputs.provisioners }}
steps:
- uses: actions/checkout@v4

## TODO: Add matrixed provisioner build here
- name: Build Packer Image
working-directory: ./packer
run: packer build ./ubuntu.pkr.hcl
- name: Set up Packer
uses: hashicorp/setup-packer@1aa358be5cf73883762b302a3a03abd66e75b232
with:
version: 1.11.2

# Needed for ISO builder
- name: Set up QEMU
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25

- name: Run `packer init ${{ inputs.service }}`
working-directory: ./packer/ubuntu-server
run: packer init .

- name: Run `packer validate ${{ inputs.service }}`
working-directory: ./packer/ubuntu-server
run: packer validate --var dibbs_service=${{ inputs.service }} --var dibbs_version=${{ inputs.version }} .

# workflow_call and workflow_dispatch for either service
- name: Run `packer build ${{ inputs.service }}`
working-directory: ./packer/ubuntu-server
run: packer build --var dibbs_service=${{ inputs.service }} --var dibbs_version=${{ inputs.version }} .

## TODO: Decide how to export artifact.
## TODO: Decide how to export artifact.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
packer/ubuntu-server/build/*

docker/dibbs-ecr-viewer/.env
docker/dibbs-ecr-viewer/ecr-viewer.wizard
docker/dibbs-ecr-viewer/ecr-viewer.bak

docker/dibbs-query-connectory/.env
docker/dibbs-query-connectory/query-connectory.wizard.env
docker/dibbs-query-connectory/query-connectory.env.bak
22 changes: 22 additions & 0 deletions docker/dibbs-ecr-viewer/dibbs-ecr-viewer.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
AWS_REGION=${AWS_REGION}
ECR_BUCKET_NAME=${ECR_BUCKET_NAME}

AZURE_STORAGE_CONNECTION_STRING=${AZURE_STORAGE_CONNECTION_STRING}
AZURE_CONTAINER_NAME=${AZURE_CONTAINER_NAME}

HOSTNAME=0.0.0.0

NBS_AUTH=${NBS_AUTH}
NBS_PUB_KEY=${NBS_PUB_KEY}

CONFIG_NAME=${CONFIG_NAME}

DATABASE_URL=${DATABASE_URL}

SQL_SERVER_USER=${SQL_SERVER_USER}
SQL_SERVER_PASSWORD=${SQL_SERVER_PASSWORD}
SQL_SERVER_HOST=${SQL_SERVER_HOST}
DB_CIPHER=${DB_CIPHER}

DIBBS_SERVICE=dibbs-ecr-viewer
DIBBS_VERSION=${DIBBS_VERSION}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -2,58 +2,58 @@ version: '3.8'

services:
ecr-viewer:
image: ghcr.io/cdcgov/dibbs-ecr-viewer/ecr-viewer:v2.0.0-beta
image: ghcr.io/cdcgov/$DIBBS_SERVICE/ecr-viewer:$DIBBS_VERSION
restart: always
env_file: "ecr-viewer.env"
env_file: "dibbs-ecr-viewer.env"
ports:
- "3000:3000"
networks:
- dibbs

ingestion:
image: ghcr.io/cdcgov/dibbs-ecr-viewer/ingestion:v2.0.0-beta
image: ghcr.io/cdcgov/$DIBBS_SERVICE/ingestion:$DIBBS_VERSION
restart: always
ports:
- "8080:8080"
networks:
- dibbs

validation:
image: ghcr.io/cdcgov/dibbs-ecr-viewer/validation:v2.0.0-beta
image: ghcr.io/cdcgov/$DIBBS_SERVICE/validation:$DIBBS_VERSION
restart: always
ports:
- "8081:8080"
networks:
- dibbs

fhir-converter:
image: ghcr.io/cdcgov/dibbs-ecr-viewer/fhir-converter:v2.0.0-beta
image: ghcr.io/cdcgov/$DIBBS_SERVICE/fhir-converter:$DIBBS_VERSION
restart: always
ports:
- "8082:8080"
networks:
- dibbs

message-parser:
image: ghcr.io/cdcgov/dibbs-ecr-viewer/message-parser:v2.0.0-beta
image: ghcr.io/cdcgov/$DIBBS_SERVICE/message-parser:$DIBBS_VERSION
restart: always
ports:
- "8083:8080"
networks:
- dibbs

trigger-code-reference:
image: ghcr.io/cdcgov/dibbs-ecr-viewer/trigger-code-reference:v2.0.0-beta
image: ghcr.io/cdcgov/$DIBBS_SERVICE/trigger-code-reference:$DIBBS_VERSION
restart: always
ports:
- "8084:8080"
networks:
- dibbs

orchestration:
image: ghcr.io/cdcgov/dibbs-ecr-viewer/orchestration:v2.0.0-beta
env_file: "orchestration.env"
restart: always
image: ghcr.io/cdcgov/$DIBBS_SERVICE/orchestration:$DIBBS_VERSION
env_file: "dibbs-orchestration.env"
restart: always
ports:
- "8085:8080"
networks:
214 changes: 214 additions & 0 deletions docker/dibbs-ecr-viewer/wizard.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,214 @@
#!/bin/bash

# This script is a setup wizard for the eCR Viewer application. It guides the user through the process of configuring
# environment variables and setting up the necessary configurations for running the application using Docker Compose.
#
# Functions:
# - clear_dot_env: Clears the file.
# - display_intro: Displays an introductory message and documentation link.
# - config_name: Prompts the user to select a configuration name from a list of options.
# - set_dot_env_var: Prompts the user to input a value for a given environment variable, with an optional default value.
# - set_dot_vars: Sets environment variables based on the selected configuration name and calls relevant functions to set additional variables.
# - confirm_vars: Displays the current environment variables and prompts the user to confirm them.
# - restart_docker_compose: Restarts Docker Compose with the updated environment variables.
# - add_env: Adds a key-value pair to the dibbs_ecr_viewer_wizard file.
# - pg: Sets environment variables for PostgreSQL configuration.
# - sqlserver: Sets environment variables for SQL Server configuration.
# - nbs: Sets environment variables for NBS (National Electronic Disease Surveillance System Base System) configuration.
# - aws: Sets environment variables for AWS configuration.
# - azure: Sets environment variables for Azure configuration.
#
# The script follows these steps:
# 1. Clears the dibbs_ecr_viewer_wizard file.
# 2. Displays an introductory message.
# 3. Prompts the user to select a configuration name.
# 4. Sets environment variables based on the selected configuration.
# 5. Prompts the user to confirm the environment variables.
# 6. Replaces the contents of the dibbs_ecr_viewer_env file with the contents of the dibbs_ecr_viewer_wizard file.
# 7. Restarts Docker Compose with the updated environment variables.

dibbs_ecr_viewer_env="dibbs-ecr-viewer.env"
dibbs_ecr_viewer_bak="dibbs-ecr-viewer.bak"
dibbs_ecr_viewer_wizard="dibbs-ecr-viewer.wizard"

clear_dot_env() {
echo "" > "$dibbs_ecr_viewer_wizard"
}

display_intro() {
echo ""
echo -e "\e[1;32m**********************************************\e[0m"
echo -e "\e[1;32m* *\e[0m"
echo -e "\e[1;32m*\e[0m \e[1;37mWelcome to the eCR Viewer setup wizard\e[0m \e[1;32m*\e[0m"
echo -e "\e[1;32m* *\e[0m"
echo -e "\e[1;32m**********************************************\e[0m"
echo ""
echo -e "\e[1;32mDocumentation can be found at: \e[4;36mhttps://github.com/CDCgov/dibbs-vm\e[0m"
echo ""
}

config_name() {
PS3='
Please select your CONFIG_NAME: '
options=("AWS_PG_NON_INTEGRATED" "AWS_SQLSERVER_NON_INTEGRATED" "AWS_INTEGRATED" "AZURE_INTEGRATED" "AZURE_PG_NON_INTEGRATED" "AZURE_SQLSERVER_NON_INTEGRATED" "Quit")
select opt in "${options[@]}"
do
echo ""
echo -e "\e[1;36m Setting: CONFIG_NAME=$opt\e[0m"
echo ""
case $opt in
"AWS_PG_NON_INTEGRATED")
CONFIG_NAME="AWS_PG_NON_INTEGRATED"
break
;;
"AWS_SQLSERVER_NON_INTEGRATED")
CONFIG_NAME="AWS_SQLSERVER_NON_INTEGRATED"
break
;;
"AWS_INTEGRATED")
CONFIG_NAME="AWS_INTEGRATED"
break
;;
"AZURE_INTEGRATED")
CONFIG_NAME="AZURE_INTEGRATED"
break
;;
"AZURE_PG_NON_INTEGRATED")
CONFIG_NAME="AZURE_PG_NON_INTEGRATED"
break
;;
"AZURE_SQLSERVER_NON_INTEGRATED")
CONFIG_NAME="AZURE_SQLSERVER_NON_INTEGRATED"
break
;;
"Quit")
break
;;
*) echo "invalid option $REPLY";;
esac
done
}

set_dot_env_var() {
value=$1
default=$2
read -rp $' \e[3m'"$value (default: $default):"$'\e[0m' choice
if [ -z "$choice" ]; then
choice=$default
fi
echo ""
echo -e " \e[1;36mSetting: $value=$choice\e[0m"
echo ""
add_env "$value" "$choice"
}

set_dot_vars() {
add_env "CONFIG_NAME" $CONFIG_NAME
if [ "$CONFIG_NAME" == "AWS_PG_NON_INTEGRATED" ]; then
aws
nbs
pg
elif [ "$CONFIG_NAME" == "AWS_SQLSERVER_NON_INTEGRATED" ]; then
aws
nbs
sqlserver
elif [ "$CONFIG_NAME" == "AWS_INTEGRATED" ]; then
aws
nbs
pg
elif [ "$CONFIG_NAME" == "AZURE_INTEGRATED" ]; then
azure
nbs
pg
elif [ "$CONFIG_NAME" == "AZURE_PG_NON_INTEGRATED" ]; then
azure
nbs
pg
elif [ "$CONFIG_NAME" == "AZURE_SQLSERVER_NON_INTEGRATED" ]; then
azure
nbs
sqlserver
else
echo "Invalid configuration name. Please choose a valid configuration name."
exit 1
fi
}

confirm_vars() {
echo -e "\e[1;33mPlease confirm the following settings:\e[0m"
vars=$(cat "$dibbs_ecr_viewer_wizard")
echo -e "\e[1;36m$vars\e[0m"
echo ""
read -p "Is this information correct? (y/n): " choice
if [ "$choice" != "y" ]; then
echo "Please run the script again and provide the correct information."
exit 1
fi
echo -e "\e[1;32mSettings confirmed. Updating your configuration.\e[0m"
cp "$dibbs_ecr_viewer_env" "$dibbs_ecr_viewer_bak"
cat "$dibbs_ecr_viewer_wizard" > "$dibbs_ecr_viewer_env"
# export the environment variables for the current session
# needed for the docker compose file DIBBS_SERVICE and DIBBS_VERSION
export $(cat $dibbs_ecr_viewer_env | xargs)
}

restart_docker_compose() {
docker compose down
docker compose up -d
}

add_env() {
echo "$1=$2" >> "$dibbs_ecr_viewer_wizard"
}

pg() {
set_dot_env_var "DATABASE_URL" "postgresql://postgres:password@localhost:5432/postgres"
}

sqlserver() {
set_dot_env_var "SQL_SERVER_USER" "sa"
set_dot_env_var "SQL_SERVER_PASSWORD" "password"
set_dot_env_var "SQL_SERVER_HOST" "localhost"
set_dot_env_var "DB_CIPHER" ""
}

nbs() {
set_dot_env_var "NBS_AUTH" true
set_dot_env_var "NBS_PUB_KEY" ""
}

aws() {
set_dot_env_var "AWS_REGION" "us-east-1"
set_dot_env_var "ECR_BUCKET_NAME" ""
}

azure() {
set_dot_env_var "AZURE_STORAGE_CONNECTION_STRING" ""
set_dot_env_var "AZURE_CONTAINER_NAME" ""
}

docker_compose_vars() {
# parse ecr-viewer.env file for environment variables
echo -e "\e[1;33mParsing eCR Viewer for default environment variables...\e[0m"
echo ""
while IFS= read -r line; do
case $line in
DIBBS_SERVICE=*)
dibbs_service=$(echo "$line" | cut -d'=' -f2)
;;
DIBBS_VERSION=*)
dibbs_version=$(echo "$line" | cut -d'=' -f2)
;;
esac
done < "$dibbs_ecr_viewer_env"
add_env "DIBBS_SERVICE" "$dibbs_service"
set_dot_env_var "DIBBS_VERSION" "$dibbs_version"
}

clear_dot_env
display_intro
docker_compose_vars
config_name
set_dot_vars
confirm_vars
restart_docker_compose
14 changes: 0 additions & 14 deletions docker/ecr-viewer/ecr-viewer.env

This file was deleted.

19 changes: 19 additions & 0 deletions examples/aws/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# AWS AMI with user-data scripts

This guide will help you launch a virtual machine (VM) in AWS using an AMI with user-data scripts.

## Steps to Launch a VM with User-Data Scripts

1. **Create a VM**:
- Go to the ec2 web interface.
- Click on "Launch Instance" and follow the wizard to configure your VM.
- In the "Configure Instance Details" step, add your user-data scripts under the "Advanced Details" section.
- The user-data scripts will execute during the VM's initialization.

2. **Start the VM**:
- Once the user-data scripts are added, start the VM.
- The user-data scripts will execute during the VM's initialization.

## Example User-Data Scripts

TODO: Add example user-data scripts here.
22 changes: 22 additions & 0 deletions examples/proxmox/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Proxmox VM Launch with Hookscripts

This guide will help you launch a virtual machine (VM) in Proxmox with hookscripts.

## Steps to Launch a VM with Hookscripts

1. **Create a VM**:
- Go to the Proxmox web interface.
- Click on "Create VM" and follow the wizard to configure your VM.

2. **Add Hookscripts**:
- After creating the VM, go to the VM's options.
- Add your hookscripts under the "Hookscripts" section.

3. **Start the VM**:
- Once the hookscripts are added, start the VM.
- The hookscripts will execute during the VM's lifecycle events.

## Example Hookscripts

## user scripts for proxmox
https://pve.proxmox.com/pve-docs/pve-admin-guide.html#_hookscripts
33 changes: 27 additions & 6 deletions packer/ubuntu-server/scripts/provision.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/bin/bash

# loop through all .env files and export the variables
for file in $(find . -name "*.env"); do
export $(cat $file | xargs)
done

# Adjust Docker group permissions.
groupadd docker
usermod -aG docker ubuntu
@@ -8,12 +15,26 @@ systemctl enable docker.service
systemctl enable containerd.service
systemctl start docker.service

# Clone Compose files
cd ~
mkdir dev
cd dev
git clone https://github.com/CDCgov/dibbs-vm.git
cd dibbs-vm/docker/ecr-viewer
# Check if DIBBS_SERVICE is valid
# dibbs-ecr-viewer
# dibbs-query-connect
if [ "$DIBBS_SERVICE" == "dibbs-ecr-viewer" ] || [ "$DIBBS_SERVICE" == "dibbs-query-connect" ]; then
echo "DIBBS Service is valid. DIBBS_SERVICE=$DIBBS_SERVICE"
else
echo "DIBBS Service is not valid. DIBBS_SERVICE=$DIBBS_SERVICE" && exit 1
fi

# Clone the dibbs-vm repository
git clone --branch alis/21_2 https://github.com/CDCgov/dibbs-vm.git
cd "dibbs-vm/docker/$DIBBS_SERVICE"

# ensures the DIBBS variables are set and accessible to the wizard
echo "DIBBS_SERVICE=$DIBBS_SERVICE" >> "$DIBBS_SERVICE.env"
echo "DIBBS_VERSION=$DIBBS_VERSION" >> "$DIBBS_SERVICE.env"
echo "" >> "$DIBBS_SERVICE.env"

# enables docker compose variables to stay set on reboot, DIBBS_SERVICE and DIBBS_VERSION
echo 'export $(cat '~/dibbs-vm/docker/$DIBBS_SERVICE/*.env' | xargs)' >> ~/.bashrc

# Trigger initial docker compose to pull image data
docker compose up -d
9 changes: 6 additions & 3 deletions packer/ubuntu-server/ubuntu.pkr.hcl
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ packer {
}

source "qemu" "iso" {
vm_name = "ubuntu-2404-ecrViewer.raw"
vm_name = "ubuntu-2404-${ var.dibbs_service }-${var.dibbs_version}.raw"
# Uncomment this block to use a basic Ubuntu 24.04 cloud image
# iso_url = "https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img"
# iso_checksum = "sha256:28d2f9df3ac0d24440eaf6998507df3405142cf94a55e1f90802c78e43d2d9df"
@@ -44,7 +44,7 @@ vm_name = "ubuntu-2404-ecrViewer.raw"
disk_image = false

memory = 4096
output_directory = "build/os-base"
output_directory = "build/${ var.dibbs_service }-${var.dibbs_version}"
//accelerator = "hvf"
disk_size = "8000M"
disk_interface = "virtio"
@@ -83,12 +83,15 @@ build {
sources = [
"source.qemu.iso"
]

provisioner "shell" {
only = ["qemu.iso"]
scripts = [
"scripts/provision.sh"
]
environment_vars = [
"DIBBS_SERVICE=${ var.dibbs_service }",
"DIBBS_VERSION=${ var.dibbs_version }"
]
execute_command = "echo 'ubuntu' | {{.Vars}} sudo -S -E bash '{{.Path}}'"
}

14 changes: 14 additions & 0 deletions packer/ubuntu-server/variables.pkr.hcl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
variable "dibbs_service" {
# dibbs-ecr-viewer
# dibbs-query-connector
description = "The name of the service to be built"
type = string
}

variable "dibbs_version" {
# needs to be a valid tagged branch with built docker containers
# main
# v2.0.0-beta
description = "The version of the service to be built"
type = string
}
33 changes: 33 additions & 0 deletions utils/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/bin/bash

cd ../packer/ubuntu-server/ || exit

# check if the build directory exists
if [ -d "build/$1-$2" ]; then
echo "Build directory for that version already exists."
read -rp $' \e[3m'"Do you want to remove the build directory? (y/n):"$'\e[0m' choice
if [ "$choice" == "y" ]; then
rm -rf "build/$1-$2"
else
echo "Cannot continue with the build process."
exit 1
fi
fi

if [ -z "$1" ] || [ -z "$2" ]; then
echo "Usage: ./build.sh [DIBBS_SERVICE] [DIBBS_VERSION]"
echo "Example: ./build.sh dibbs-ecr-viewer 1.0.0"
echo "Example: ./build.sh dibbs-query-connect 1.0.0"
exit 1
fi

# init
packer init .

# validate
packer validate --var dibbs_service=$1 --var dibbs_version=$2 .

# Build the base image
packer build --var dibbs_service=$1 --var dibbs_version=$2 .

cd ../../utils/ || exit