xpipe-io / xpipe

Your entire server infrastructure at your fingertips
https://xpipe.io
Apache License 2.0
2.3k stars 66 forks source link

Please create an appimage as part of the build process. #272

Closed nmcbride closed 3 days ago

nmcbride commented 1 month ago

Please create an appimage as part of the build process. appimages do not have the sandboxing that flatpaks do and the portable release is perfectly suited to be an appimage.

Thank you.

crschnick commented 1 month ago

What kind of distro are you using where the existing installers and packages do not cover it?

nmcbride commented 1 month ago

I'm using an immutable distro called Fedora Silverblue but I'm assuming most other immutable distros are similar.

We do not really install anything to the OS and use solely flatpaks and appimages. Worse case we have to create a container and install into the container which gets messy and has it's own issues.

Most everything I use either has a flatpak or an appimage currently. I understand why flatpaks and the sandboxing would be a pain to support without a bunch of overrides for the sandbox but appimages are a lot easier, integrate into most Linux OS's cleaning and has a good update mechanism that developers can choose to use or not.

crschnick commented 1 month ago

Alright I will see what I can do

nmcbride commented 1 month ago

Thank you. :)

satsen commented 1 month ago

@crschnick Hi. I have not done it myself and I do not really use AppImages either but this JavaFX project (not my project) has AppImages, I thought it could be helpful for you as a reference: https://github.com/CodeDead/opal

crschnick commented 3 weeks ago

So I wanted to try out Fedora Silverblue myself. After familiarizing myself a bit with it, running sudo rpm-ostree install <xpipe rpm> works fine for me to install xpipe. I'm not sure whether there would be a lot of additional value from adding AppImage support.

I can definitely add that command to the install script so it will also work on Fedora Silverblue.

nmcbride commented 3 weeks ago

No one said the rpm couldnt be installed.

The whole point of silverblue and other immutable distros is to keep apps isolated and not overlay them onto the base image if you can help it. Especially 3rd party apps.

Normally the priority of a 3rd party app install would go flatpak, appimage, container, overlay. You said flatpak was too difficult which is why I asked for an appimage.

It didnt take much to make an appimage from the portable version. I could code something up to just monitor xpipes releases and make an appimage and upload it to a repo for everyone but it really makes more sense being added to your build process and listed as an artifact under each release to make it easy for others to find.

crschnick commented 3 weeks ago

Oh it seems like I didn't fully understand what they command was doing then, I thought that overlay was handled more nicely and not added to the base image.

I can work on an appimage, the main thing to figure out is how to handle updates/uninstalls. You don't need to explain AppImage details, I will just read about it when I find some time.

nmcbride commented 3 weeks ago

@crschnick Honestly I didn't do a good job articulating.

rpm-ostree install layers packages on top of the base image from fedora. Then a new image is generated that you reboot into. So what you installed becomes part of the os and that image gets a new commit and gpg signature and such. Adding packages into the os as overlays can cause a few issues. When I was learning silverblue I ran into a ton of 3rd party rpms that just wouldn't work due to the fact that only /etc/ and /var are writable. Another issue that is less common is that having 3rd party rpms overlayed can cause some issues when you are rebasing from one version to another. So a lot of people tend to just overlay things like drivers, system tools or utilities they use all the time (like git) that are from fedora repos. Then everything else gets installed by one of the flatpak > appimage > container methods.

Thank you for working on an appimage, if you need any help please let me know.

I've never used appimage updates personally but I see a lot of appimages using it now and it is really nice.

As for installation and un-installation, appimages are sort of like OSX's dmgs. They don't get installed or uninstalled. You just run them and when you want to remove it send it to trash. There are linux utilities like gearlever that will take an appimage and make it seem more streamlined into the os and make sure the correct menu entries are created and such but this isn't something you'd have to do anything for.

The one issue I've seen with people making appimages is not everyone takes the time to make sure that all the dependencies are included in it. Which then of course requires you to rpm a bunch of dependencies anyway and really defeats the purpose. But this is why your portable version is so good for this because it is already basically an appimage. Just needs to be packaged up. :)

crschnick commented 2 weeks ago

Alright you can try the AppImage at https://github.com/xpipe-io/xpipe-ptb/releases/tag/10.0-7 to see whether everything works correctly.

nmcbride commented 2 weeks ago

Thank you I'll give it a shot and test it and let you know how it goes. Thanks sooo much!

nmcbride commented 2 weeks ago

So far the only issue I've found is when scanning for kubernets. But I'm not sure if it has anything to do with the appimage or just the new version:

java.lang.StackOverflowError
at sun.security.provider.SHA.implDigest(SHA.java:108)
at sun.security.provider.DigestBase.engineDigest(DigestBase.java:205)
at sun.security.provider.DigestBase.engineDigest(DigestBase.java:185)
at java.security.MessageDigest$Delegate.engineDigest(MessageDigest.java:673)
at java.security.MessageDigest.digest(MessageDigest.java:387)
at sun.security.provider.SecureRandom.engineNextBytes(SecureRandom.java:250)
at sun.security.provider.NativePRNG$RandomIO.implNextBytes(NativePRNG.java:538)
at sun.security.provider.NativePRNG.engineNextBytes(NativePRNG.java:222)
at java.security.SecureRandom.nextBytes(SecureRandom.java:768)
at java.util.UUID.randomUUID(UUID.java:153)
at io.xpipe.core.process.CommandBuilder.buildBaseParts(CommandBuilder.java:239)
at io.xpipe.core.process.CommandBuilder.buildBase(CommandBuilder.java:234)
at io.xpipe.core.process.CommandBuilder.buildFull(CommandBuilder.java:258)
at io.xpipe.ext.proc.c.l(SourceFile:300)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
at io.xpipe.ext.proc.k8s.f$1.apply(SourceFile:50)
at io.xpipe.ext.proc.c.l(SourceFile:308)
at io.xpipe.ext.proc.c.start(SourceFile:18)
at io.xpipe.core.process.CommandControl.executeAndCheck(CommandControl.java:51)
crschnick commented 2 weeks ago

That is actually a normal bug, I will fix that.

The only thing I don't quite understand / know whether it works is the desktop file in the app image. I didn't see a place where this was used

nmcbride commented 2 weeks ago

So far seems like it is working fine for me. I have it in my gnome launcher using gearlever to manage it and it launches when I click it.

crschnick commented 2 weeks ago

The stack overflow has been fixed. Feel free to continue using the PTB build, maybe you will find something that is not working correctly with the app image until release

crschnick commented 3 days ago

This is now released, let me know whether everything works for you

crschnick commented 1 day ago

It seems like the aarch64 build is failing for the appimage: ./appimagetool-aarch64.AppImage: Exec format error

Is there any limitation of running the app image tool in qemu? Because it is running in an aarch64 qemu environment.