Skip to content
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

vm-instance: switch default profile to ubuntu #432

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
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
24 changes: 12 additions & 12 deletions packages/apps/vm-instance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@ virtctl ssh <user>@<vm>

### Common parameters

| Name | Description | Value |
| ------------------ | ---------------------------------------------------------------------------------- | ------------------- |
| `external` | Enable external access from outside the cluster | `false` |
| `externalPorts` | Specify ports to forward from outside the cluster | `[]` |
| `running` | Determines if the virtual machine should be running | `true` |
| `instanceType` | Virtual Machine instance type | `u1.medium` |
| `instanceProfile` | Virtual Machine prefferences profile | `windows.10.virtio` |
| `disks` | List of disks to attach | `[]` |
| `resources.cpu` | The number of CPU cores allocated to the virtual machine | `""` |
| `resources.memory` | The amount of memory allocated to the virtual machine | `""` |
| `sshKeys` | List of SSH public keys for authentication. Can be a single key or a list of keys. | `[]` |
| Name | Description | Value |
| ------------------ | ---------------------------------------------------------------------------------- | ---------------- |
| `external` | Enable external access from outside the cluster | `false` |
| `externalPorts` | Specify ports to forward from outside the cluster | `[]` |
| `running` | Determines if the virtual machine should be running | `true` |
| `instanceType` | Virtual Machine instance type | `u1.medium` |
| `instanceProfile` | Virtual Machine prefferences profile | `ubuntu` |
| `disks` | List of disks to attach | `[]` |
| `resources.cpu` | The number of CPU cores allocated to the virtual machine | `""` |
| `resources.memory` | The amount of memory allocated to the virtual machine | `""` |
| `sshKeys` | List of SSH public keys for authentication. Can be a single key or a list of keys. | `[]` |
| `cloudInit` | cloud-init user data config. See cloud-init documentation for more details. | `#cloud-config
` |
` |

## U Series

Expand Down
2 changes: 1 addition & 1 deletion packages/apps/vm-instance/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"instanceProfile": {
"type": "string",
"description": "Virtual Machine prefferences profile",
"default": "windows.10.virtio",
"default": "ubuntu",
"optional": true,
"enum": [
"alpine",
Expand Down
2 changes: 1 addition & 1 deletion packages/apps/vm-instance/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ running: true
## @param instanceProfile Virtual Machine prefferences profile
##
instanceType: "u1.medium"
instanceProfile: windows.10.virtio
instanceProfile: ubuntu

## @param disks [array] List of disks to attach
## Example:
Expand Down
Loading