Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
🚀
This server has been upgraded to GitLab release
15.7
.
🚀
Open sidebar
memoriav
Memobase 2020
utilities
Import Process CLI
Commits
f69e4e84
Commit
f69e4e84
authored
Jul 23, 2020
by
Jonas Waeber
Browse files
Fix deployment script
parent
11927f71
Changes
1
Hide whitespace changes
Inline
Side-by-side
deployment/api/process.py
View file @
f69e4e84
...
...
@@ -24,8 +24,11 @@ class ImportProcess:
exit
(
1
)
else
:
logging
.
info
(
f
"Deployed config map
{
self
.
process_id
}
-
{
config_map
.
name
}
."
)
values
=
self
.
values
[
'global'
]
values
=
dict
()
for
chart
in
self
.
charts
:
values
.
clear
()
for
key
in
self
.
values
[
'global'
]:
values
[
key
]
=
self
.
values
[
'global'
][
key
]
if
chart
.
name
in
self
.
values
:
for
key
in
self
.
values
[
chart
.
name
]:
values
[
key
]
=
self
.
values
[
chart
.
name
][
key
]
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment