Roy Crihfield
36d4969b2d
All checks were successful
Lint Checks / Run linter (push) Successful in 37s
Publish / Build and publish (push) Successful in 1m10s
Deploy Test / Run deploy test suite (push) Successful in 5m1s
Smoke Test / Run basic test suite (push) Successful in 4m1s
Webapp Test / Run webapp test suite (push) Successful in 4m40s
Fixes - stack path resolution for `build` - external stack path resolution for deployments - "extra" config detection - `deployment ports` command - `version` command in dist or source install (without build_tag.txt) - `setup-repos`, so it won't die when an existing repo is not at a branch or exact tag Used in cerc-io/fixturenet-eth-stacks#14 Reviewed-on: #851 Reviewed-by: David Boreham <dboreham@noreply.git.vdb.to>
42 lines
1.6 KiB
Python
42 lines
1.6 KiB
Python
# Copyright © 2024 Vulcanize
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
|
|
|
|
import importlib.resources
|
|
|
|
from stack_orchestrator.opts import opts
|
|
from stack_orchestrator.util import get_parsed_stack_config, warn_exit
|
|
|
|
|
|
def get_containers_in_scope(stack: str):
|
|
|
|
containers_in_scope = []
|
|
if stack:
|
|
stack_config = get_parsed_stack_config(stack)
|
|
if "containers" not in stack_config or stack_config["containers"] is None:
|
|
warn_exit(f"stack {stack} does not define any containers")
|
|
containers_in_scope = stack_config['containers']
|
|
else:
|
|
# See: https://stackoverflow.com/a/20885799/1701505
|
|
from stack_orchestrator import data
|
|
with importlib.resources.open_text(data, "container-image-list.txt") as container_list_file:
|
|
containers_in_scope = container_list_file.read().splitlines()
|
|
|
|
if opts.o.verbose:
|
|
print(f'Containers: {containers_in_scope}')
|
|
if stack:
|
|
print(f"Stack: {stack}")
|
|
|
|
return containers_in_scope
|