Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
az group create --name onapKubernetes --location eastus
 "id": "/subscriptions/f.8b/resourceGroups/onapKubernetes"
# use example 
# https://github.com/Azure/azure-quickstart-templates/tree/master/101-vm-simple-linux
# validate first
az group deployment validate --resource-group onapKubernetes --template-file oom_azure_arm_deploy.json  --parameters @oom_azure_arm_deploy_parameters.json 
az group deployment create --resource-group onapKubernetes --template-file oom_azure_arm_deploy.json  --parameters @oom_azure_arm_deploy_parameters.json 

SSH into your VM and run the Kubernetes and OOM installation scripts

Code Block
# clone the oom repo to get the install directory
git clone https://gerrit.onap.org/r/oom
# run the Rancher RI installation (to install kubernetes)
oom/install/rancher/oom_rancher_install.sh -b master -s 192.168.240.32


Delete the VM and resource group

Code Block
# delete the vm and resources
$ az group delete --name oomKubernetesonapKubernetes -y


ONAP on Azure Container Service

...