Skip to content

feat(apple_silicon): expose ssh/sudo credentials in public APIs #2146

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

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Changes from all commits
Commits
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
8 changes: 7 additions & 1 deletion api/applesilicon/v1alpha1/applesilicon_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,15 @@ type Server struct {
// IP: iPv4 address of the server.
IP net.IP `json:"ip"`

// VncURL: URL of the VNC.
// VncURL: vnc:// URL to access Apple Remote Desktop.
VncURL string `json:"vnc_url"`

// SSHUsername: SSH Username for remote shell.
SSHUsername string `json:"ssh_username"`

// SudoPassword: admin password required to execute commands.
SudoPassword string `json:"sudo_password"`

// Os: initially installed OS, this does not necessarily reflect the current OS version.
Os *OS `json:"os"`

Expand Down
Loading