Closed dgraeber closed 2 years ago
We just need to change the image to the name of the utility-data image. BUT...each env (nightly, iter, iter-iso, nightly-iso) probably need their own plugins manifest(3x) unless we can somehow wildcard it...
Looking at the logic, the team-script-launcher has the following logic:
if "image" not in parameters:
image = f"{context.images.jupyter_user.repository}:{context.images.jupyter_user.version}"
elif "aws-orbit-workbench/utility-data" in parameters["image"]:
image = f"{context.images.utility_data.repository}:{context.images.utility_data.version}"
else:
image = parameters["image"]
So as long as the utility-data image is defined asaws-orbit-workbench/utility-data
the proper image will be picked.
Leaving this logic in place for now....closing ticket
Some of the plugin definitions have hard-coded images in the manifest definition that point to the public repo.
For each of the regression envs, we are probably going to need a separate def for each environment.