Skip to content

Commit 1e3bcc1

Browse files
darkandrew7scott-the-programmer
authored andcommitted
fix: typo in kvm_qemu_uri default value
1 parent e16f876 commit 1e3bcc1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/resources/cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ resource "kubernetes_deployment" "deployment" {
140140
- `kvm_hidden` (Boolean) Hide the hypervisor signature from the guest in minikube (kvm2 driver only)
141141
- `kvm_network` (String) The KVM default network name. (kvm2 driver only)
142142
- `kvm_numa_count` (Number) Simulate numa node count in minikube, supported numa node count range is 1-8 (kvm2 driver only)
143-
- `kvm_qemu_uri` (String) ///system' The KVM QEMU connection URI. (kvm2 driver only)
143+
- `kvm_qemu_uri` (String) The KVM QEMU connection URI. (kvm2 driver only)
144144
- `listen_address` (String) IP Address to use to expose ports (docker and podman driver only)
145145
- `memory` (Number) Amount of RAM to allocate to Kubernetes in mb
146146
- `mount` (Boolean) This will start the mount daemon and automatically mount files into minikube.

minikube/schema_cluster.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,8 @@ var (
355355
Type: schema.TypeString,
356356
Optional: true,
357357
ForceNew: true,
358-
Description: "///system' The KVM QEMU connection URI. (kvm2 driver only)",
359-
Default: "qemu",
358+
Description: "The KVM QEMU connection URI. (kvm2 driver only)",
359+
Default: "qemu:///system",
360360
},
361361

362362
"listen_address": {

0 commit comments

Comments
 (0)