Skip to content

Commit

Permalink
bug: Correct CONTAINERS Makefile ENV
Browse files Browse the repository at this point in the history
- Correct ENV to ignore reverse-proxy container

Fixes #67
  • Loading branch information
kevydotvinu committed Aug 9, 2023
1 parent 8bc87b2 commit 351cbc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ignition/00-core.bu
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ storage:
RELEASE ?= stable
LOGLEVEL ?= info
SCRIPT_DIR = $(shell cd -- "$( dirname -- "${BASH_SOURCE[0]:-$0}"; )" &> /dev/null && pwd 2> /dev/null; )
CONTAINERS = $(shell sudo podman ps --format {{.Names}} | sort | grep -oE '^dhcp|vbmc|webserver|proxy' | xargs)
CONTAINERS = $(shell sudo podman ps --format {{.Names}} | sort | grep -oE '^dhcp$|^vbmc$|^webserver$|^proxy$' | xargs)
VMS = $(shell sudo virsh list --all --name | grep -oE 'master0|master1|master2|worker0|worker1' | xargs)
TFF = $(shell ls /tmp/openshift-install-bootstrap-*/terraform.platform.auto.tfvars.json 2>/dev/null | wc -l)
VIRBR0 = $(shell sudo virsh net-info default | awk '/Bridge:/{print $$2}')
Expand Down

0 comments on commit 351cbc1

Please sign in to comment.