-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [CDE-585]: Support creation and attaching of persistent disks (#…
…538) * feat: [CDE-585]: Support creation and attaching of persistent disks * feat: [CDE-585]: Support creation and attaching of persistent disks * feat: [CDE-585]: Add more checks * feat: [CDE-585]: Handle disk already exists case * feat: [CDE-585]: Remove testing changes * feat: [CDE-585]: Remove debug changes * feat: [CDE-585]: Fix storage type * feat: [CDE-585]: Skip CDE VMs from cleanup * feat: [CDE-585]: Fix lint * feat: [CDE-585]: Fix lint * feat: [CDE-585]: Address comments * feat: [CDE-585]: Address comments
- Loading branch information
1 parent
41b144a
commit ab30e8d
Showing
7 changed files
with
185 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
package harness | ||
|
||
type InstanceInfo struct { | ||
ID string `json:"id"` | ||
Name string `json:"name"` | ||
IPAddress string `json:"ip_address"` | ||
Port int64 `json:"port"` | ||
OS string `json:"os"` | ||
Arch string `json:"arch"` | ||
Provider string `json:"provider"` | ||
PoolName string `json:"pool_name"` | ||
Zone string `json:"zone"` | ||
ID string `json:"id"` | ||
Name string `json:"name"` | ||
IPAddress string `json:"ip_address"` | ||
Port int64 `json:"port"` | ||
OS string `json:"os"` | ||
Arch string `json:"arch"` | ||
Provider string `json:"provider"` | ||
PoolName string `json:"pool_name"` | ||
Zone string `json:"zone"` | ||
StorageIdentifier string `json:"storage_identifier"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters