Changes between Version 7 and Version 8 of Tutorials/Cloud/ONAP


Ignore:
Timestamp:
Oct 18, 2019, 3:20:05 PM (5 years ago)
Author:
hanif
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Cloud/ONAP

    v7 v8  
    195195}}}
    196196
    197 example:
     197in our example mariadb and portal are turned on:
    198198
    199199{{{
     
    279279}}}
    280280
     2815. Start helm server and add local helm repository
     282
     283{{{
     284// start server
     285helm serve &
     286//hit enter if the process is running to let the process run in background
     287
     288// add repository
     289helm repo add local http://127.0.0.1:8879
     290}}}
     291
     2926. Make onap helm charts available in local helm repository
     293
     294{{{
     295cd ~/oom/kubernetes
     296make all; make onap
     297
     298//This make command takes some time to finish
     299
     300}}}
     301
     3027. Deploy ONAP
     303
     304{{{
     305helm deploy demo local/onap --namespace onap -f ~/overrides/onap-all.yaml
     306}}}
     307
     3088. Verify the deploy
     309
     310{{{
     311helm ls
     312}}}
    281313
    282314