...
ssh -i ~/.ssh/onap_key ubuntu@10.12.6.205
Become root:
Code Block |
---|
$ sudo /bin/su |
If you want to test out a change to one of AAI's charts, make the change and submit to gerrit.
...
Run the following to get your change applied:
Code Block |
---|
$ cd /root/oom/kubernetes |
...
$ make all |
...
$ cd /root |
...
$ helm upgrade -i dev local/onap --namespace onap -f integration-override.yaml --set aai.enabled=false |
...
$ helm upgrade -i dev local/onap --namespace onap -f integration-override.yaml --set aai.enabled=true |
Look at the AAI pods:
$ kubectl get pods -n onap | grep aai
You'll see something similar to this if everything came up correctly:
...
...
Code Block |
---|
root@rancher:/home/ubuntu# kubectl get pods -n onap | grep aai |
...
dev-aai-77d54bc645-kkmb8 1/1 Running 0 22h |
...
dev-aai-babel-7cf9689996-jt866 2/2 Running 0 22h |
...
dev-aai-cassandra-0 1/1 Running 0 12h |
...
dev-aai-cassandra-1 1/1 Running 0 22h |
...
dev-aai-cassandra-2 1/1 Running 0 22h |
...
dev-aai-champ-5dfdf9dfb5-7fc79 1/1 Running 0 15h |
...
dev-aai-data-router-7989bcfcb4-p5qwn 1/1 Running 0 22h |
...
dev-aai-elasticsearch-7fc496d745-tf67m 1/1 Running 0 22h |
...
dev-aai-gizmo-5c46b4fc4c-8d42w 2/2 Running 0 22h |
...
dev-aai-hbase-5d9f9b4595-fx82p 1/1 Running 5 22h |
...
dev-aai-modelloader-787b7c9c54-jnd9j 2/2 Running 0 22h |
...
dev-aai-resources-6c6f56cd86-6clpb 2/2 Running 0 22h |
...
dev-aai-search-data-5f8465445f-l7j8n 2/2 Running 0 22h |
...
dev-aai-sparky-be-687fc7487d-7mqzg 2/2 Running 1 15h |
...
dev-aai-traversal-7955b55464-tz98p 2/2 Running 0 22h |
Run a healthdist to check the AAI services
...