What's needed to deploy ONAP
...
remediation : reinstall gate
Gating reinstallation
To reinstall ONAP Gating instance two pipelines are used. Both are saved as "Scheduled" (but disabled) on Pipeline Schedules · Orange-OpenSource / lfn / ci_cd / chained-ci · GitLab repo. The schedules are:
- ONAP Gating Azure 3 - to recreate Gating 3,
- ONAP Gating Azure 4 - to recreate Gating 4.
It's needed only to run these pipelines (if user is allowed) and wait for finish. There is also required to disable gating system before reinstallation. To do it it's needed to login on Gating bastion (rebond.francecentral.cloudapp.azure.com) and scale one of the required deployments running on "onap-gating" kubernetes namespace:
- chained-ci-mqtt-trigger-worker-7 - Gating 3 deployment,
- chained-ci-mqtt-trigger-worker-8 - Gating 4 deployment.
To scale it down (disable it) call
Code Block |
---|
$ kubectl -n onap-gating scale deployment/<deployment-you-want-to-scale-down> --replicas=0 |
After successful recreation of gating lab bring it back to work using
Code Block |
---|
$ kubectl -n onap-gating scale deployment/<deployment-you-want-to-scale-down> --replicas=1 |
command.