Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
devops
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
osm
devops
Commits
2b951281
Commit
2b951281
authored
7 years ago
by
Mike Marchetti
Browse files
Options
Downloads
Patches
Plain Diff
Bug 357 fixed: improve checking when SO rest is up
Signed-off-by:
Mike Marchetti
<
mmarchetti@sandvine.com
>
parent
43e0c967
No related branches found
Branches containing commit
Tags
v3.0.0rc8
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
installers/install_osm.sh
+17
-15
17 additions, 15 deletions
installers/install_osm.sh
with
17 additions
and
15 deletions
installers/install_osm.sh
+
17
−
15
View file @
2b951281
...
...
@@ -133,30 +133,28 @@ function update(){
echo
}
function
so_is_up
(){
function
so_is_up
()
{
SO_IP
=
$1
time
=
0
step
=
5
timelength
=
300
while
[
$time
-le
$timelength
]
do
curl
-k
https://
$SO_IP
:8008/api/operational/vcs/info
\
--header
'accept: application/vnd.yang.data+json'
\
--header
'authorization: Basic YWRtaW46YWRtaW4='
\
--header
'cache-control: no-cache'
\
--header
'content-type: application/vnd.yang.data+json'
&> /dev/null
RET
=
$?
if
[
"
$RET
"
==
0
]
;
then
break
if
[[
`
curl
-k
-X
GET https://
$SO_IP
:8008/api/operational/vcs/info
\
-H
'accept: application/vnd.yang.data+json'
\
-H
'authorization: Basic YWRtaW46YWRtaW4='
\
-H
'cache-control: no-cache'
2> /dev/null | jq
'.[].components.component_info[] | select(.component_name=="RW.Restconf")'
2>/dev/null |
grep
"RUNNING"
|
wc
-l
`
-eq
1
]]
then
echo
"RW.Restconf running....SO is up"
return
0
fi
sleep
$step
echo
-n
"."
time
=
$((
time
+
step
))
done
if
[
"
$RET
"
!=
0
]
;
then
FATAL
"OSM Failed to startup"
fi
echo
FATAL
"OSM Failed to startup"
}
#Configure VCA, SO and RO with the initial configuration:
...
...
@@ -374,8 +372,12 @@ else
trap
'rm -rf "$TEMPDIR"'
EXIT
fi
echo
-e
"Checking required packages: git"
dpkg
-l
git &>/dev/null
||
!
echo
-e
" git not installed.
\n
Installing git requires root privileges"
||
sudo
apt-get
install
-y
git
need_packages
=
"git jq"
for
package
in
$need_packages
;
do
echo
-e
"Checking required packages:
$package
"
dpkg
-l
$package
&>/dev/null
||
!
echo
-e
"
$package
not installed.
\n
Installing
$package
requires root privileges"
||
sudo
apt-get
install
-y
$package
done
if
[
-z
"
$TEST_INSTALLER
"
]
;
then
echo
-e
"
\n
Cloning devops repo temporarily"
git clone https://osm.etsi.org/gerrit/osm/devops.git
$TEMPDIR
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment