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

Remove Citadel from ign-docker-env tool #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
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
6 changes: 2 additions & 4 deletions plugins/ign-docker-env.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
--vol $LOCAL_PATH:$CONTAINER_PATH Load volumes into Docker container (separate multiple volumes with '::')

Notes:
Valid inputs for IGN_RELEASE are 'citadel' and 'fortress'.
Valid inputs for the --linux-distro arg are 'ubuntu:bionic' or 'ubuntu:focal'.
Valid inputs for IGN_RELEASE are: 'fortress'.
Valid inputs for the --linux-distro arg are: 'ubuntu:focal'.
"""

import os
Expand All @@ -49,10 +49,8 @@

# TODO: use a yaml file to get this information
# keep track of all valid versions and their default linux distro
bionic = 'ubuntu:bionic'
focal = 'ubuntu:focal'
IGN_VERSIONS = {
'citadel': bionic,
'fortress': focal
}

Expand Down
Loading