...
When you modify the deployment yaml you need to recompile the onap chart (it is not necessary for installation or when you just modify the values.yaml)
compile onap
navigate to the <git>/oom/kubernetes folder
Code Block | ||
---|---|---|
| ||
helm package ./onap --dependency-update |
upload onap
Code Block | ||
---|---|---|
| ||
helm cm-push onap-<version>.tgz xerces -f |
missing dependencies
When you run this compilation first you must compile every dependencies too.
First you need to start a local chartmuseum
Code Block | ||
---|---|---|
| ||
docker run -p 8879:8080 bitnami/chartmuseum:latest |
add local repository to helm
Code Block | ||
---|---|---|
| ||
helm repo add local http://localhost:8879/ |
after it you can compile the whole onap project, it has a make file so it is quiet easy, but take a long time ca. an hourĀ
Code Block | ||
---|---|---|
| ||
make build |
then you can continue with the second step
Pnf-simulator
Open pnf-simulator's directory in your terminal. Compile and upload must be run once for each cluster.
...