mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-13 01:21:23 +00:00
31a10d3619
Signed-off-by: Mustafa Gezen <mustafa@ctrliq.com>
12 lines
385 B
Plaintext
12 lines
385 B
Plaintext
local stage = std.extVar('stage');
|
|
local ociRegistry = std.extVar('oci_registry');
|
|
local ociRegistryDocker = std.extVar('oci_registry_docker');
|
|
local localEnvironment = std.extVar('local_environment');
|
|
local localImage = if localEnvironment == "1" then true else false;
|
|
|
|
{
|
|
local_image: localImage,
|
|
docker_hub_image(name): "%s/%s" % [ociRegistryDocker, name],
|
|
helm_mode: false,
|
|
}
|