Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
Cloud
MAS
clonemap
Commits
494b373e
Commit
494b373e
authored
Jan 13, 2021
by
Stefan Dähling
Browse files
fixes, loglevel, images
parent
2f017203
Pipeline
#390091
passed with stages
in 2 minutes and 53 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
pkg/ams/ams.go
View file @
494b373e
...
...
@@ -236,8 +236,9 @@ func (ams *AMS) startMAS(masID int, masInfo schemas.MASInfo, numAgencies []int)
if
os
.
Getenv
(
"CLONEMAP_DEPLOYMENT_TYPE"
)
==
"local"
{
_
,
err
=
dfcli
.
PostGraph
(
masID
,
masInfo
.
Graph
)
if
err
!=
nil
{
ams
.
logError
.
Println
(
err
.
Error
())
return
ams
.
logInfo
.
Println
(
err
.
Error
())
// return
err
=
nil
}
}
...
...
pkg/kubestub/container.go
View file @
494b373e
...
...
@@ -168,9 +168,9 @@ func (stub *LocalStub) createAMS() (err error) {
com
+=
" -e CLONEMAP_STORAGE_TYPE=
\"
local
\"
"
}
com
+=
" -e CLONEMAP_SUFFIX=
\"
.clonemap
\"
"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
error
\"
"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
"
+
stub
.
logLevel
+
"
\"
"
com
+=
" -e CLONEMAP_STUB_HOSTNAME=
\"
kubestub
\"
"
com
+=
" ams"
com
+=
"
registry.git.rwth-aachen.de/acs/public/cloud/mas/clonemap/
ams"
cmd
:=
exec
.
Command
(
"sh"
,
"-c"
,
com
)
cmdOut
,
err
:=
cmd
.
Output
()
if
err
!=
nil
{
...
...
@@ -206,8 +206,8 @@ func (stub *LocalStub) createLogger() (err error) {
com
+=
" --hostname=logger"
com
+=
" --network=clonemap-net"
com
+=
" -e CLONEMAP_DEPLOYMENT_TYPE=
\"
local
\"
"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
error
\"
"
com
+=
" logger"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
"
+
stub
.
logLevel
+
"
\"
"
com
+=
"
registry.git.rwth-aachen.de/acs/public/cloud/mas/clonemap/
logger"
cmd
:=
exec
.
Command
(
"sh"
,
"-c"
,
com
)
cmdOut
,
err
:=
cmd
.
Output
()
if
err
!=
nil
{
...
...
@@ -242,8 +242,8 @@ func (stub *LocalStub) createDF() (err error) {
com
+=
" --hostname=df"
com
+=
" --network=clonemap-net"
com
+=
" -e CLONEMAP_DEPLOYMENT_TYPE=
\"
local
\"
"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
error
\"
"
com
+=
" df"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
"
+
stub
.
logLevel
+
"
\"
"
com
+=
"
registry.git.rwth-aachen.de/acs/public/cloud/mas/clonemap/
df"
cmd
:=
exec
.
Command
(
"sh"
,
"-c"
,
com
)
cmdOut
,
err
:=
cmd
.
Output
()
if
err
!=
nil
{
...
...
@@ -277,8 +277,8 @@ func (stub *LocalStub) createPnP() (err error) {
com
+=
" --hostname=pnp"
com
+=
" --network=clonemap-net"
com
+=
" -e CLONEMAP_DEPLOYMENT_TYPE=
\"
local
\"
"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
info
\"
"
com
+=
" plugnplay"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
"
+
stub
.
logLevel
+
"
\"
"
com
+=
"
registry.git.rwth-aachen.de/acs/public/cloud/mas/clonemap/
plugnplay"
cmd
:=
exec
.
Command
(
"sh"
,
"-c"
,
com
)
cmdOut
,
err
:=
cmd
.
Output
()
if
err
!=
nil
{
...
...
@@ -313,8 +313,8 @@ func (stub *LocalStub) createFrontend() (err error) {
com
+=
" --hostname=fe"
com
+=
" --network=clonemap-net"
com
+=
" -e CLONEMAP_DEPLOYMENT_TYPE=
\"
local
\"
"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
info
\"
"
com
+=
" frontend"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
"
+
stub
.
logLevel
+
"
\"
"
com
+=
"
registry.git.rwth-aachen.de/acs/public/cloud/mas/clonemap/
frontend"
cmd
:=
exec
.
Command
(
"sh"
,
"-c"
,
com
)
cmdOut
,
err
:=
cmd
.
Output
()
if
err
!=
nil
{
...
...
@@ -402,7 +402,7 @@ func (stub *LocalStub) createAgency(image string, masID int, imID int, agencyID
}
else
{
com
+=
" -e CLONEMAP_DF=
\"
OFF
\"
"
}
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
info
\"
"
com
+=
" -e CLONEMAP_LOG_LEVEL=
\"
"
+
stub
.
logLevel
+
"
\"
"
com
+=
image
cmd
:=
exec
.
Command
(
"sh"
,
"-c"
,
com
)
...
...
pkg/kubestub/localstub.go
View file @
494b373e
...
...
@@ -70,6 +70,7 @@ type LocalStub struct {
df
bool
pnp
bool
frontend
bool
logLevel
string
}
// StartLocalStub starts the local stub. The AMS is started and a server for AMS interaction is
...
...
@@ -84,6 +85,10 @@ func StartLocalStub() {
_
,
cntxt
.
df
=
os
.
LookupEnv
(
"CLONEMAP_MODULE_DF"
)
_
,
cntxt
.
pnp
=
os
.
LookupEnv
(
"CLONEMAP_MODULE_PNP"
)
_
,
cntxt
.
frontend
=
os
.
LookupEnv
(
"CLONEMAP_MODULE_FRONTEND"
)
cntxt
.
logLevel
,
_
=
os
.
LookupEnv
(
"CLONEMAP_LOG_LEVEL"
)
if
cntxt
.
logLevel
==
""
{
cntxt
.
logLevel
=
"error"
}
fmt
.
Println
(
"Create Bridge Network"
)
err
=
cntxt
.
createBridge
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment