Commit 9993fb4f authored by Francisco-Javier Ramon Salguero's avatar Francisco-Javier Ramon Salguero
Browse files

Merge branch 'newrc-install' into 'master'

01-test-environment.md: install procedure for new release candidates

See merge request !1
parents 8605ed6b 008a8cd5
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -16,13 +16,24 @@ Daily builds of OSM Release SEVEN can be created by using the installer with the

```bash
./install_osm.sh -R ReleaseSEVEN-daily -t releaseseven-daily -r testing -y
# For installation on top of K8s (instead of docker swarm):
# ./install_osm.sh -R ReleaseSEVEN-daily -t releaseseven-daily -r testing -y -c k8s
```

This build includes the latest community contributions and may contain bugs. Therefore it is only recommended for developers and contributors involved in community testing.

### New release candidate

TODO: To be edited when there is a new release candidate to be tested.
New release candidates can be tested using the installer with the following options:

```bash
DOCKER_TAG=7.1.0rc1
REPO_BASE=7.1.0rc1
REPO_NAME=testing
./install_osm.sh -t ${DOCKER_TAG} -r ${REPO_NAME} -R ${REPO_BASE} -y
# For installation on top of K8s (instead of docker swarm):
./install_osm.sh -t ${DOCKER_TAG} -r ${REPO_NAME} -R ${REPO_BASE} -y -c k8s
```

## Performing the tests