Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
memoriav
Memobase 2020
services
autodeploy-service
Commits
a685061c
Verified
Commit
a685061c
authored
Sep 02, 2021
by
Sebastian Schüpbach
Browse files
fix syntactic errors
parent
706e7edb
Pipeline
#32009
passed with stages
in 1 minute and 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
autodeploy_service_app/autodeploy.py
View file @
a685061c
...
...
@@ -238,8 +238,11 @@ def installFromRepo(pullChartUri):
check
=
True
,
)
except
subprocess
.
CalledProcessError
as
ex
:
msg
=
'removing helm chart from local repository failed with return code {} -- STDOUT: {} -- STDERR: {}'
.
format
(
ex
.
returncode
,
ex
.
stdout
,
ex
.
stderr
msg
=
(
'removing helm chart from local repository'
+
'failed with return code {} -- STDOUT: {} -- STDERR: {}'
.
format
(
ex
.
returncode
,
ex
.
stdout
,
ex
.
stderr
)
)
app
.
logger
.
warning
(
msg
)
return
output
,
status
...
...
Write
Preview
Markdown
is supported
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