-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: implement "fully source containers" HMS-3883
also changes compose file to be more robust on startup use docker as default for now podman does not seem to run stable. will need to investigate more in docs: document makefile overview
- Loading branch information
1 parent
1ac2af3
commit 988db63
Showing
19 changed files
with
1,259 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
.PHONY: help | ||
help: | ||
@echo "make [TARGETS...]" | ||
@echo | ||
@echo "This is the makefile of osbuild-getting-started. The following" | ||
@echo "targets are available:" | ||
@echo | ||
@echo " service-containers: Build all needed containers from source to be able to run the service" | ||
@echo " run-service: Run all containers needed for the 'service'" | ||
@echo " This is running in foreground. Use CTRL-C to stop the containers." | ||
@echo " run-service-no-frontend: Run all containers except for the frontend" | ||
@echo " stop-service: Usually the containers get stopped by CTRL-C. So 'stop-service'" | ||
@echo " is only needed if something strange happened and not all are stopped." | ||
@echo " prune-service: Remove the containers, including the test-data!" | ||
@echo " If you want empty databases" | ||
@echo " clean: Clean all subprojects to assure a rebuild" | ||
|
||
# source where the other repos are locally | ||
# has to end with a trailing slash | ||
SRC_DEPS_EXTERNAL_CHECKOUT_DIR ?= ../ | ||
|
||
# either "docker" or "sudo podman" | ||
# podman needs to build as root as it also needs to run as root afterwards | ||
CONTAINER_EXECUTABLE ?= docker | ||
CONTAINER_COMPOSE_EXECUTABLE := $(CONTAINER_EXECUTABLE) compose | ||
|
||
MAKE_SUB_CALL := make CONTAINER_EXECUTABLE="$(CONTAINER_EXECUTABLE)" | ||
|
||
# osbuild is indirectly used by osbuild-composer | ||
# but we'll mention it here too for better error messages and usability | ||
COMMON_SRC_DEPS_NAMES := osbuild osbuild-composer pulp-client community-gateway | ||
COMMON_SRC_DEPS_ORIGIN := $(addprefix $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR),$(COMMON_SRC_DEPS_NAMES)) | ||
|
||
ONPREM_SRC_DEPS_NAMES := weldr-client | ||
ONPREM_SRC_DEPS_ORIGIN := $(addprefix $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR),$(ONPREM_SRC_DEPS_NAMES)) | ||
|
||
SERVICE_SRC_DEPS_NAMES := image-builder image-builder-frontend | ||
SERVICE_SRC_DEPS_ORIGIN := $(addprefix $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR),$(SERVICE_SRC_DEPS_NAMES)) | ||
|
||
# should be set if we are already sudo - otherwise we set to "whoami" | ||
SUDO_USER ?= $(shell whoami) | ||
|
||
$(COMMON_SRC_DEPS_ORIGIN) $(SERVICE_SRC_DEPS_ORIGIN) $(ONPREM_SRC_DEPS_ORIGIN): | ||
@for DIR in $@; do if ! [ -d $$DIR ]; then echo "Please checkout $$DIR so it is available at $$DIR"; exit 1; fi; done | ||
|
||
COMPARE_TO_BRANCH ?= origin/main | ||
|
||
SCRATCH_DIR := /scratch/ | ||
COMMON_DIR := podman/image-builder-config | ||
CLI_DIRS := podman/weldr podman/cloudapi podman/dnf-json | ||
DATA_DIR := data/s3 | ||
ALL_SCRATCH_DIRS := $(addprefix $(SCRATCH_DIR),$(COMMON_DIR) $(CLI_DIRS) $(DATA_DIR)) | ||
|
||
# internal rule for sub-calls | ||
# NOTE: This chowns all directories back - as we expect to run partly as root | ||
# also we "git fetch origin" to get the current state! | ||
.PHONY: common_sub_makes | ||
common_sub_makes: | ||
@echo "We need to build everything as root, as the target also needs to run as root." | ||
@echo "At least for podman the password as already needed now" | ||
|
||
# creating container image from osbuild as a basis for worker | ||
$(MAKE_SUB_CALL) -C $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR)osbuild-composer container_worker container_composer | ||
|
||
.PHONY: service_sub_makes | ||
service_sub_makes: | ||
# building the backend | ||
$(MAKE_SUB_CALL) -C $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR)image-builder container | ||
# building the frontend | ||
$(MAKE_SUB_CALL) -C $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR)image-builder-frontend container | ||
@for DIR in $(COMMON_SRC_DEPS_ORIGIN) $(SERVICE_SRC_DEPS_ORIGIN); do echo "Giving directory permissions in '$$DIR' back to '$(SUDO_USER)'"; sudo chown -R $(SUDO_USER): $$DIR; done | ||
@echo "Your current versions are (comparing to origin/main):" | ||
./git_stack.sh | ||
|
||
.PHONY: onprem_sub_makes | ||
onprem_sub_makes: | ||
# building the cli | ||
$(MAKE_SUB_CALL) -C $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR)weldr-client container | ||
@for DIR in $(COMMON_SRC_DEPS_ORIGIN) $(ONPREM_SRC_DEPS_ORIGIN); do echo "Giving directory permissions in '$$DIR' back to '$(SUDO_USER)'"; sudo chown -R $(SUDO_USER): $$DIR; done | ||
@echo "Your current versions are (comparing to origin/main):" | ||
./git_stack.sh | ||
|
||
.PHONY: service-containers | ||
service-containers: $(COMMON_SRC_DEPS_ORIGIN) $(SERVICE_SRC_DEPS_ORIGIN) common_sub_makes service_sub_makes service_images_built.info | ||
|
||
onprem-containers: $(COMMON_SRC_DEPS_ORIGIN) $(ONPREM_SRC_DEPS_ORIGIN) common_sub_makes onprem_sub_makes onprem_images_built.info | ||
|
||
service_images_built.info: service/config/Dockerfile-config service/config/composer/osbuild-composer.toml $(ALL_SCRATCH_DIRS) | ||
# building remaining containers (config, fauxauth) | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f service/docker-compose.yml build --build-arg CONFIG_BUILD_DATE=$(shell date -r $(SCRATCH_DIR)$(COMMON_DIR) +%Y%m%d_%H%M%S) | ||
echo "Images last built on" > $@ | ||
date >> $@ | ||
|
||
onprem_images_built.info: service/config/Dockerfile-config-onprem service/config/composer/osbuild-composer-onprem.toml $(ALL_SCRATCH_DIRS) | ||
# building remaining containers (config) | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f service/docker-compose-onprem.yml build --build-arg CONFIG_BUILD_DATE=$(shell date -r $(SCRATCH_DIR)$(COMMON_DIR) +%Y%m%d_%H%M%S) | ||
echo "Images last built on" > $@ | ||
date >> $@ | ||
|
||
$(ALL_SCRATCH_DIRS): | ||
@echo "Creating directory: $@" | ||
mkdir -p $@ || ( echo "Trying as root" ; sudo mkdir -p $@ ) | ||
|
||
.PHONY: wipe-config | ||
wipe-config: | ||
sudo rm -rf $(SCRATCH_DIR)$(COMMON_DIR) | ||
rm -f $(SRC_DEPS_EXTERNAL_CHECKOUT_DIR)image-builder-frontend/node_modules/.cache/webpack-dev-server/server.pem | ||
|
||
.PHONY: clean | ||
clean: $(COMMON_SRC_DEPS_ORIGIN) $(SERVICE_SRC_DEPS_ORIGIN) $(ONPREM_SRC_DEPS_ORIGIN) prune-service prune-onprem wipe-config | ||
rm -f service_images_built.info | ||
rm -f onprem_images_built.info | ||
sudo rm -rf $(SCRATCH_DIR) | ||
for DIR in $*; do $(MAKE_SUB_CALL) -C $$DIR clean; done | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f service/docker-compose.yml rm | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f service/docker-compose-onprem.yml rm | ||
|
||
# for compatibility of relative volume mount paths | ||
# between docker and podman we have to change to the directory | ||
.PHONY: run-service | ||
.ONESHELL: | ||
run-service: $(addprefix $(SCRATCH_DIR),$(COMMON_DIRS)) service-containers | ||
export PORTS="$(shell docker compose -f service/docker-compose.yml config|grep -Po '(?<=published: ")[0-9]+')" | ||
echo "-- Checking if any of our ports are used: $$PORTS" | ||
sudo netstat -lntp|grep -E "$$(echo "$$PORTS"|tr ' ' ':')" | ||
echo "-- Check done" | ||
pushd service | ||
$(CONTAINER_COMPOSE_EXECUTABLE) up | ||
popd | ||
|
||
# only for strange crashes - should shut down properly in normal operation | ||
.PHONY: stop-service | ||
.ONESHELL: | ||
stop-service: | ||
pushd service | ||
$(CONTAINER_COMPOSE_EXECUTABLE) stop | ||
popd | ||
|
||
.PHONY: prune-service | ||
.ONESHELL: | ||
prune-service: | ||
pushd service | ||
$(CONTAINER_COMPOSE_EXECUTABLE) down | ||
popd | ||
|
||
# if you want to run the frontend yourself - outside the docker environment | ||
.PHONY: run-service | ||
run-service-no-frontend: service-containers | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f service/docker-compose.yml up backend fauxauth worker composer minio postgres_backend postgres_composer | ||
|
||
.PHONY: prune-onprem | ||
.ONESHELL: | ||
prune-onprem: | ||
pushd service | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f docker-compose-onprem.yml down | ||
popd | ||
|
||
# for compatibility of relative volume mount paths | ||
# between docker and podman we have to change to the directory | ||
.PHONY: run-onprem | ||
.ONESHELL: | ||
run-onprem: $(addprefix $(SCRATCH_DIR),$(COMMON_DIRS) $(CLI_DIRS)) onprem-containers | ||
pushd service | ||
# remove dangling sockets | ||
sudo rm -f $(addsuffix /api.sock*, $(addprefix $(SCRATCH_DIR), $(CLI_DIRS))) | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f docker-compose-onprem.yml up -d | ||
@echo "------ Welcome to osbuild! You can now use 'composer-cli' to build images" | ||
@echo " … and 'exit' afterwards" | ||
@echo " You might also be interested to open up a second terminal and" | ||
@echo " run 'docker compose -f $(shell readlink -f service/docker-compose-onprem.yml) logs --follow' to see possible problems" | ||
|
||
$(CONTAINER_COMPOSE_EXECUTABLE) -f docker-compose-onprem.yml run --entrypoint /bin/bash -ti cli | ||
$(CONTAINER_COMPOSE_EXECUTABLE) -f docker-compose-onprem.yml stop | ||
popd | ||
|
||
%.svg: %.dot | ||
dot -T svg $< > $@ | ||
|
||
.PHONY: docs | ||
docs: docs/src_compile_service.svg docs/src_compile_onprem.svg | ||
|
||
.PHONY: overview | ||
overview: | ||
@echo "Fetching all repos for better overview if rebase will be necessary:" | ||
ifeq (${SUDO_USER},$(shell whoami)) | ||
./git_stack.sh fetch --all | ||
else | ||
sudo -u ${SUDO_USER} ./git_stack.sh fetch --all | ||
endif | ||
@./git_stack.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
digraph src_compile { | ||
newrank=true; | ||
subgraph cluster_osbuild_getting_started { | ||
node [ shape=box; fillcolor=white; style=filled; ] | ||
style=filled; fillcolor=lightgrey; | ||
|
||
label = "osbuild-\ngetting-started"; | ||
osbuild_getting_started_makefile [ | ||
label = "make\nonprem-containers" | ||
width = 2; | ||
]; | ||
osbuild_getting_started_run [ | ||
label = "make\nrun-onprem" | ||
width = 2; | ||
]; | ||
} | ||
|
||
subgraph cluster_osbuild { | ||
node [ shape=box; fillcolor=white; style=filled; ] | ||
style=filled; fillcolor=lightgrey; | ||
|
||
label = "osbuild\n "; | ||
osbuild_makefile [ | ||
label = "make\ncontainer"; | ||
width = 1.5; | ||
]; | ||
} | ||
|
||
subgraph cluster_osbuild_composer { | ||
node [ shape=box; fillcolor=white; style=filled; ] | ||
style=filled; fillcolor=lightgrey; | ||
|
||
label = "osbuild-composer\n "; | ||
osbuild_composer_makefile_composer [ | ||
label = "make\ncontainer_composer" | ||
width = 2; | ||
]; | ||
osbuild_composer_makefile_worker [ | ||
label = "make\ncontainer_worker" | ||
width = 2; | ||
]; | ||
|
||
osbuild_composer_go [ label = "go code"; ]; | ||
} | ||
|
||
subgraph cluster_weldr_client { | ||
node [ shape=box; fillcolor=white; style=filled; ] | ||
style=filled; fillcolor=lightgrey; | ||
|
||
label = "weldr-client"; | ||
weldr_client_makefile [ | ||
label = "make\ncontainer" | ||
width = 1.5; | ||
]; | ||
} | ||
subgraph cluster_pulp_client { | ||
node [ shape=box; fillcolor=white; style=filled; ] | ||
style=filled; fillcolor=lightgrey; | ||
|
||
label = "pulp-client"; | ||
pulp_client_go [ | ||
label = "go code"; | ||
width = 1.5; | ||
]; | ||
} | ||
subgraph cluster_images { | ||
node [ shape=box; fillcolor=white; style=filled; ] | ||
style=filled; fillcolor=lightgrey; | ||
|
||
label = "images"; | ||
images_go [label = "go code";]; | ||
} | ||
{ rank=same; | ||
osbuild_makefile; | ||
osbuild_composer_makefile_worker; | ||
osbuild_composer_makefile_composer; | ||
weldr_client_makefile; | ||
|
||
} | ||
{ rank=same; | ||
edge [style=dashed; headport=s; tailport=s]; | ||
pulp_client_go; | ||
images_go; | ||
} | ||
osbuild_composer_go -> pulp_client_go [style=dashed;]; | ||
osbuild_composer_go -> images_go [style=dashed;]; | ||
|
||
osbuild_getting_started_run -> osbuild_getting_started_makefile; | ||
|
||
osbuild_getting_started_makefile -> osbuild_makefile; | ||
osbuild_getting_started_makefile -> osbuild_composer_makefile_worker; | ||
osbuild_getting_started_makefile -> osbuild_composer_makefile_composer; | ||
|
||
|
||
osbuild_getting_started_makefile -> weldr_client_makefile; | ||
osbuild_composer_makefile_worker -> osbuild_composer_go [style=dashed]; | ||
osbuild_composer_makefile_composer -> osbuild_composer_go [style=dashed]; | ||
|
||
osbuild_composer_makefile_worker -> osbuild_makefile [style=dashed; headport=s; tailport=s]; | ||
|
||
} |
Oops, something went wrong.