feat(LXC): add ssh-keys
Some checks failed
CI / build (push) Failing after 3m54s
CI / lint (push) Failing after 3m24s
CI / pkl-validate (push) Successful in 15s
CI / integration-tests (push) Has been skipped
CI / conformance-tests (latest) (push) Has been skipped

This commit is contained in:
2026-02-14 20:59:42 +01:00
parent 7f84ceaafd
commit 48451c6717
3 changed files with 20 additions and 14 deletions

View File

@@ -8,14 +8,15 @@ type TargetConfig struct {
}
type LXCProperties struct {
VMID string `json:"vmid"`
Hostname string `json:"hostname"`
Description string `json:"description,omitempty"`
OSTemplate string `json:"ostemplate,omitempty"`
Password string `json:"password,omitempty"`
Cores int `json:"cores"`
Memory int `json:"memory"`
OnBoot int `json:"onboot"`
VMID string `json:"vmid"`
Hostname string `json:"hostname"`
Description string `json:"description,omitempty"`
OSTemplate string `json:"ostemplate,omitempty"`
Password string `json:"password,omitempty"`
Cores int `json:"cores"`
Memory int `json:"memory"`
OnBoot int `json:"onboot"`
SSHKeys []string `json:"sshkeys"`
}
type ReadRequest struct {