mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00

* * bug fix - make OLM manifests be set per provider * * move all CDI installation related variables to cluster-sync directory
10 lines
653 B
Bash
10 lines
653 B
Bash
#!/usr/bin/env bash
|
|
|
|
#Listed here a variables to be set by each provider provider per installation technique
|
|
CDI_INSTALL_OPERATOR="install-operator" #install CDI via operator manifests
|
|
CDI_INSTALL_OLM="install-olm" #install CDI via OLM CSV manifest
|
|
CDI_OLM_MANIFESTS_CATALOG_SRC="" #location of CatalogSource manifest for OLM installation
|
|
CDI_OLM_MANIFESTS_SUBSCRIPTION="" #location of Subscription manifest for OLM installation
|
|
CDI_INSTALL=${CDI_INSTALL:-${CDI_INSTALL_OPERATOR}} #installation technique set to operator manifests by default
|
|
CDI_INSTALL_TIMEOUT=${CDI_INSTALL_TIMEOUT:-120} #timeout for installation sequence
|