Skip to content

Commit

Permalink
vm-instance: switch default profile to ubuntu (#432)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei Kvapil <[email protected]>

Signed-off-by: Andrei Kvapil <[email protected]>
  • Loading branch information
kvaps authored Oct 18, 2024
1 parent f3b9843 commit 5276372
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
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

0 comments on commit 5276372

Please sign in to comment.