Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Oracle oci clusters need to run
command: oci
as configured in kubeconfig. However, this doesn't in work in flatpak because it doesn't have access to the host file system.Things I've tried:
oci
to~/.local/bin/oci
and change thecommand: oci
in kubeconfig tocommand: home/me/.local/bin/oci
. This doesn't work becauseoci
is not a binary, but a python file so all the imports don't workcommand: oci
tocommand: /run/host/usr/bin/oci
but this doesn't work either, because the python imports still failSo just wondering how people have gone to fix this
Beta Was this translation helpful? Give feedback.
All reactions