Open momiji opened 1 year ago
While working on updating to 2023.08 we had time to check if it was possible to inject the repositoryWarehouse.url
after the sasdeployment.yaml
generation.
It is indeed possible, hence this is not absolutely required, as it is possible to do so using tools like xjq
or yq
(jq
for yaml
files).
$ cat sasdeployment.yaml | xjq -y \
'(select(.kind=="SASDeployment").spec.repositoryWarehouse.url=$REPOSITORY)' \
--arg REPOSITORY "$REPOSITORY"
However I still believe it is better to be able to do it automatically, of course :)
As explained in #372, this is a WIP PR for all changes required to have a better air gapped installation.
Changes:
We're still working on first installation, new items may be added later.