Context:
The Artifact Registry stores the docker images used with OpenMapFlow. It is created if it doesn't exist on deployment:
|
if [ -z "$(gcloud artifacts repositories list --format='get(name)' --filter "$OPENMAPFLOW_PROJECT")" ]; then |
Issue
If a project crop-mask2 already exists, then for a project with a subset name e.g. crop-mask the Artifact Registry project will not be created due to the above line.
Potential Solution
Modify if statement to be more strict.
Context:
The Artifact Registry stores the docker images used with OpenMapFlow. It is created if it doesn't exist on deployment:
openmapflow/openmapflow/scripts/deploy.sh
Line 50 in e1b3bb9
Issue
If a project
crop-mask2already exists, then for a project with a subset name e.g.crop-maskthe Artifact Registry project will not be created due to the above line.Potential Solution
Modify if statement to be more strict.