Skip to content

Commit

Permalink
Update kubernetes_node_base.py (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwmonroe authored Aug 18, 2023
1 parent 38fdcfc commit 17b231c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reactive/kubernetes_node_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def install_cni_plugins():

unpack_path = "/opt/cni/bin"
os.makedirs(unpack_path, exist_ok=True)
cmd = ["tar", "xfvz", archive, "-C", unpack_path]
cmd = ["tar", "xfvz", archive, "-C", unpack_path, "--no-same-owner"]
hookenv.log(cmd)
check_call(cmd)

Expand Down

0 comments on commit 17b231c

Please sign in to comment.