| | 281 | 5. Start helm server and add local helm repository |
| | 282 | |
| | 283 | {{{ |
| | 284 | // start server |
| | 285 | helm serve & |
| | 286 | //hit enter if the process is running to let the process run in background |
| | 287 | |
| | 288 | // add repository |
| | 289 | helm repo add local http://127.0.0.1:8879 |
| | 290 | }}} |
| | 291 | |
| | 292 | 6. Make onap helm charts available in local helm repository |
| | 293 | |
| | 294 | {{{ |
| | 295 | cd ~/oom/kubernetes |
| | 296 | make all; make onap |
| | 297 | |
| | 298 | //This make command takes some time to finish |
| | 299 | |
| | 300 | }}} |
| | 301 | |
| | 302 | 7. Deploy ONAP |
| | 303 | |
| | 304 | {{{ |
| | 305 | helm deploy demo local/onap --namespace onap -f ~/overrides/onap-all.yaml |
| | 306 | }}} |
| | 307 | |
| | 308 | 8. Verify the deploy |
| | 309 | |
| | 310 | {{{ |
| | 311 | helm ls |
| | 312 | }}} |