Change ironic-agent repository to opendev.org

Change-Id: Ibb7aef79673f5b53aede110ee15e7dcfb19c2164
This commit is contained in:
Nikolay Fedorov 2020-05-20 18:16:16 +04:00
parent 8f75fbdb8c
commit 56069be50b
2 changed files with 11 additions and 5 deletions

View File

@ -32,12 +32,17 @@ done
popd
pushd /shared/html/images
STATUSCODE=$(curl --silent --insecure --location -O --write-out "%{http_code}" ${IRONIC_PYTHON_AGENT})
STATUSCODE=$(curl --silent --insecure --location -O --write-out "%{http_code}" ${IPA_RAMDISK})
if test $STATUSCODE -ne 200; then
echo "Failed to load ${ARTS[${art}]}"
exit 1
fi
STATUSCODE=$(curl --silent --insecure --location -O --write-out "%{http_code}" ${IPA_KERNEL})
if test $STATUSCODE -ne 200; then
echo "Failed to load ${ARTS[${art}]}"
exit 1
fi
tar -xf ironic-python-agent.tar
popd
chmod -R 0777 /shared/html

View File

@ -9,12 +9,13 @@ data:
DHCP_RANGE: "192.168.10.200,192.168.10.250"
PROVISIONING_INTERFACE: "pxe0"
HTTP: "80"
DEPLOY_KERNEL_PATH: "/images/ironic-python-agent.kernel"
DEPLOY_RAMDISK_PATH: "/images/ironic-python-agent.initramfs"
DEPLOY_KERNEL_PATH: "/images/tinyipa-stable-ussuri.vmlinuz"
DEPLOY_RAMDISK_PATH: "/images/tinyipa-stable-ussuri.gz"
FAST_TRACK: "false"
API_WORKERS: "4"
AUTOMATED_CLEAN: "true"
IRONIC_VOLUME_CAPACITY: "10Gi"
IRONIC_STORAGE_CLASS_NAME: "default"
IRONIC_HOST_PATH: "/opt/metal3-dev-env/ironic/"
IRONIC_PYTHON_AGENT: "https://images.rdoproject.org/master/rdo_trunk/current-tripleo/ironic-python-agent.tar"
IPA_RAMDISK: "https://tarballs.opendev.org/openstack/ironic-python-agent/tinyipa/files/tinyipa-stable-ussuri.gz"
IPA_KERNEL: "https://tarballs.opendev.org/openstack/ironic-python-agent/tinyipa/files/tinyipa-stable-ussuri.vmlinuz"