aboutsummaryrefslogtreecommitdiffstats
path: root/elements/functest/install.d/16-functest
blob: 3fbb6a095a5642bc3632648e37908a6bbf7b668e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

download-frozen-image-v2.sh /data/docker/functest \
  opnfv/functest-healthcheck:wallaby \
  opnfv/functest-smoke:wallaby \
  opnfv/functest-smoke-cntt:wallaby \
  opnfv/functest-benchmarking:wallaby \
  opnfv/functest-benchmarking-cntt:wallaby \
  opnfv/functest-vnf:wallaby
mkdir -p /data/images && wget -q -O- https://git.opnfv.org/functest/plain/functest/ci/download_images.sh?h=stable/wallaby | sh -s -- /data/images && ls -1 /data/images/*
git init /home/debian/functest && \
(cd /home/debian/functest && \
  git fetch --tags https://git.opnfv.org/functest stable/wallaby && \
  git checkout FETCH_HEAD) && \
chown -R 1000:1000 /home/debian/functest

exit 0