-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Request for kubectl #85
Comments
Hi, |
For my own future reference: https://github.com/kubernetes/kubectl |
yes, that is the official source repo. And it's a golang program.
|
Hi,
|
I used the following command to compile my test program. CC=/usr/local/go/misc/ios/clangwrap.sh GOOS=darwin GOARCH=arm64 CGO_ENABLED=1 go build Then use ldid to sign the binary. I'm not sure if that works. Your question has brought me some tips. But I don't know how to link the binary with ios_system.framework. |
ldid works for signing, but for iOS to accept a binary it has be both signed and placed in the right location. The only way to access this location is at install time, so you will have to compile your own version of Blink (It's free as long as you accept recompiling every 7 days). To have your command recognized by iOS, you need to add the binary to the list of embedded binaries in the XCode project, and to The big difficulty is making sure your command runs multiple times: often, memory de-allocation is not treated as the command exits (because when a command exits, it releases all of its memory). This is not true with iOS, and so you need to reset all variables and release all memory on exit. |
Support for kubectl will make Kubernetes cluster operations easier. O&M engineers need this feature very much.
The text was updated successfully, but these errors were encountered: