Skip to content
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
65c5f8a
wip
rolf-moz Oct 3, 2023
a3fd818
fixes for cli
rolf-moz Oct 3, 2023
94c6947
fixes
rolf-moz Oct 3, 2023
da0bec9
fixes
rolf-moz Oct 3, 2023
8aa2878
cleanup
rolf-moz Oct 3, 2023
95840fa
json param
rolf-moz Oct 3, 2023
08ed550
fix
rolf-moz Oct 3, 2023
c65684d
use json parser for config
rolf-moz Oct 3, 2023
6349403
don't reparse json
rolf-moz Oct 3, 2023
133ea7e
hyphen
rolf-moz Oct 3, 2023
66d2346
revert json
rolf-moz Oct 3, 2023
9ca28ed
fix hanging ,
rolf-moz Oct 3, 2023
6046586
fixes
rolf-moz Oct 3, 2023
33ab6a4
import fixes
rolf-moz Oct 3, 2023
a9705cf
Merge branch 'Netflix:master' into metaflow-kube-security-settings
rolf-moz Oct 5, 2023
9824258
restored gpu support
rolf-moz Oct 10, 2023
21062d7
Converted resource_limits to separate fields
rolf-moz Oct 24, 2023
ca50e08
fix
rolf-moz Oct 24, 2023
6f8ef40
update
rolf-moz Oct 24, 2023
ca92120
click args
rolf-moz Oct 24, 2023
4e58664
cleanup
rolf-moz Oct 24, 2023
a8672e6
added some logging
rolf-moz Oct 24, 2023
91b7301
not sure why this workaround is needed
rolf-moz Oct 24, 2023
36f8f05
restore
rolf-moz Oct 24, 2023
b0f7994
fix
rolf-moz Oct 24, 2023
5af6fc4
removed logs
rolf-moz Oct 24, 2023
07591fd
add default
rolf-moz Oct 24, 2023
779adcc
fixed root cause
rolf-moz Oct 24, 2023
94e59f8
lint
rolf-moz Oct 24, 2023
ab34734
refactor for argo
rolf-moz Oct 26, 2023
79c1c00
fixes
rolf-moz Oct 26, 2023
73e6fcf
cleanup
rolf-moz Oct 26, 2023
0e4a972
moved misplaced out volume from kube to argo
rolf-moz Oct 27, 2023
f72d0fd
Merge remote-tracking branch 'upstream/master' into metaflow-resource…
rolf-moz Nov 24, 2023
40ed8c0
cleanup unused imports
rolf-moz Nov 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
rolf-moz committed Oct 24, 2023
commit ca50e08fe73b29cec16eb507a9b7908a75575b2d
2 changes: 2 additions & 0 deletions metaflow/plugins/kubernetes/kubernetes_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ def __init__(self, attributes=None, statically_defined=False):
if not self.attributes["security_context"] and KUBERNETES_SECURITY_CONTEXT:
self.attributes["security_context"] = KUBERNETES_SECURITY_CONTEXT
if not self.attributes["resource_limits_memory"] and KUBERNETES_RESOURCE_LIMITS_MEMORY:
self.attributes["resource_limits_memory"] = KUBERNETES_RESOURCE_LIMITS_MEMORY
if not self.attributes["resource_limits_cpu"] and KUBERNETES_RESOURCE_LIMITS_CPU:
self.attributes["resource_limits_cpu"] = KUBERNETES_RESOURCE_LIMITS_CPU
if not self.attributes["node_selector"] and KUBERNETES_NODE_SELECTOR:
self.attributes["node_selector"] = KUBERNETES_NODE_SELECTOR
Expand Down