Skip to content

Commit

Permalink
fix: typo in kvm_qemu_uri default value
Browse files Browse the repository at this point in the history
  • Loading branch information
caerulescens authored and scott-the-programmer committed Nov 18, 2022
1 parent e16f876 commit 1e3bcc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/resources/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ resource "kubernetes_deployment" "deployment" {
- `kvm_hidden` (Boolean) Hide the hypervisor signature from the guest in minikube (kvm2 driver only)
- `kvm_network` (String) The KVM default network name. (kvm2 driver only)
- `kvm_numa_count` (Number) Simulate numa node count in minikube, supported numa node count range is 1-8 (kvm2 driver only)
- `kvm_qemu_uri` (String) ///system' The KVM QEMU connection URI. (kvm2 driver only)
- `kvm_qemu_uri` (String) The KVM QEMU connection URI. (kvm2 driver only)
- `listen_address` (String) IP Address to use to expose ports (docker and podman driver only)
- `memory` (Number) Amount of RAM to allocate to Kubernetes in mb
- `mount` (Boolean) This will start the mount daemon and automatically mount files into minikube.
Expand Down
4 changes: 2 additions & 2 deletions minikube/schema_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ var (
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Description: "///system' The KVM QEMU connection URI. (kvm2 driver only)",
Default: "qemu",
Description: "The KVM QEMU connection URI. (kvm2 driver only)",
Default: "qemu:///system",
},

"listen_address": {
Expand Down

0 comments on commit 1e3bcc1

Please sign in to comment.