Skip to content

Commit 3279f2c

Browse files
regenerate docs
1 parent f7a30c8 commit 3279f2c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

docs/resources/cluster.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ resource "kubernetes_deployment" "deployment" {
118118
- `cpus` (String) Number of CPUs allocated to Kubernetes. Use "max" to use the maximum number of CPUs. Use "no-limit" to not specify a limit (Docker/Podman only)
119119
- `cri_socket` (String) The cri socket path to be used.
120120
- `delete_on_failure` (Boolean) If set, delete the current cluster if start fails and try again. Defaults to false.
121+
- `disable_coredns_log` (Boolean) If set, disable CoreDNS verbose logging. Defaults to false.
121122
- `disable_driver_mounts` (Boolean) Disables the filesystem mounts provided by the hypervisors
122123
- `disable_metrics` (Boolean) If set, disables metrics reporting (CPU and memory usage), this can improve CPU usage. Defaults to false.
123124
- `disable_optimizations` (Boolean) If set, disables optimizations that are set for local Kubernetes. Including decreasing CoreDNS replicas from 2 to 1. Defaults to false.
@@ -130,9 +131,8 @@ resource "kubernetes_deployment" "deployment" {
130131
- `driver` (String) Driver is one of the following - Windows: (hyperv, docker, virtualbox, vmware, qemu2, ssh) - OSX: (virtualbox, parallels, vmwarefusion, hyperkit, vmware, qemu2, docker, podman, ssh) - Linux: (docker, kvm2, virtualbox, qemu2, none, podman, ssh)
131132
- `dry_run` (Boolean) dry-run mode. Validates configuration, but does not mutate system state
132133
- `embed_certs` (Boolean) if true, will embed the certs in kubeconfig.
133-
- `enable_default_cni` (Boolean) DEPRECATED: Replaced by --cni=bridge
134134
- `extra_config` (Set of String) A set of key=value pairs that describe configuration that may be passed to different components. The key should be '.' separated, and the first part before the dot is the component to apply the configuration to. Valid components are: kubelet, kubeadm, apiserver, controller-manager, etcd, proxy, scheduler Valid kubeadm parameters: ignore-preflight-errors, dry-run, kubeconfig, kubeconfig-dir, node-name, cri-socket, experimental-upload-certs, certificate-key, rootfs, skip-phases, pod-network-cidr
135-
- `extra_disks` (Number) Number of extra disks created and attached to the minikube VM (currently only implemented for hyperkit, kvm2, qemu2, and vfkit drivers)
135+
- `extra_disks` (Number) Number of extra disks created and attached to the minikube VM (currently only implemented for hyperkit, kvm2, qemu2, vfkit, and krunkit drivers)
136136
- `feature_gates` (String) A set of key=value pairs that describe feature gates for alpha/experimental features.
137137
- `force` (Boolean) Force minikube to perform possibly dangerous operations
138138
- `force_systemd` (Boolean) If set, force the container runtime to use systemd as cgroup manager. Defaults to false.
@@ -153,15 +153,15 @@ resource "kubernetes_deployment" "deployment" {
153153
- `interactive` (Boolean) Allow user prompts for more information
154154
- `iso_url` (Set of String) Locations to fetch the minikube ISO from.
155155
- `keep_context` (Boolean) This will keep the existing kubectl context and will create a minikube context.
156-
- `kubernetes_version` (String) The Kubernetes version that the minikube VM will use (ex: v1.2.3, 'stable' for v1.33.1, 'latest' for v1.33.1). Defaults to 'stable'.
156+
- `kubernetes_version` (String) The Kubernetes version that the minikube VM will use (ex: v1.2.3, 'stable' for v1.34.0, 'latest' for v1.34.0). Defaults to 'stable'.
157157
- `kvm_gpu` (Boolean) Enable experimental NVIDIA GPU support in minikube
158158
- `kvm_hidden` (Boolean) Hide the hypervisor signature from the guest in minikube (kvm2 driver only)
159159
- `kvm_network` (String) The KVM default network name. (kvm2 driver only)
160160
- `kvm_numa_count` (Number) Simulate numa node count in minikube, supported numa node count range is 1-8 (kvm2 driver only)
161161
- `kvm_qemu_uri` (String) The KVM QEMU connection URI. (kvm2 driver only)
162162
- `listen_address` (String) IP Address to use to expose ports (docker and podman driver only)
163163
- `memory` (String) Amount of RAM to allocate to Kubernetes (format: <number>[<unit>], where unit = b, k, m or g). Use "max" to use the maximum amount of memory. Use "no-limit" to not specify a limit (Docker/Podman only))
164-
- `mount` (Boolean) This will start the mount daemon and automatically mount files into minikube.
164+
- `mount` (Boolean) Kept for backward compatibility, value is ignored.
165165
- `mount_9p_version` (String) Specify the 9p version that the mount should use
166166
- `mount_gid` (String) Default group id used for the mount
167167
- `mount_ip` (String) Specify the ip that the mount should be setup on
@@ -175,7 +175,6 @@ resource "kubernetes_deployment" "deployment" {
175175
- `nat_nic_type` (String) NIC Type used for nat network. One of Am79C970A, Am79C973, 82540EM, 82543GC, 82545EM, or virtio (virtualbox driver only)
176176
- `native_ssh` (Boolean) Use native Golang SSH client (default true). Set to 'false' to use the command line 'ssh' command when accessing the docker machine. Useful for the machine drivers when they will not start with 'Waiting for SSH'.
177177
- `network` (String) network to run minikube with. Used by docker/podman, qemu, kvm, and vfkit drivers. If left empty, minikube will create a new network.
178-
- `network_plugin` (String) DEPRECATED: Replaced by --cni
179178
- `nfs_share` (Set of String) Local folders to share with Guest via NFS mounts (hyperkit driver only)
180179
- `nfs_shares_root` (String) Where to root the NFS Shares, defaults to /nfsshares (hyperkit driver only)
181180
- `no_kubernetes` (Boolean) If set, minikube VM/container will start without starting or configuring Kubernetes. (only works on new clusters)
@@ -198,7 +197,6 @@ resource "kubernetes_deployment" "deployment" {
198197
- `trace` (String) Send trace events. Options include: [gcp]
199198
- `uuid` (String) Provide VM UUID to restore MAC address (hyperkit driver only)
200199
- `vm` (Boolean) Filter to use only VM Drivers
201-
- `vm_driver` (String) DEPRECATED, use `driver` instead.
202200
- `wait` (Set of String) comma separated list of Kubernetes components to verify and wait for after starting a cluster. defaults to "apiserver,system_pods", available options: "apiserver,system_pods,default_sa,apps_running,node_ready,kubelet,extra" . other acceptable values are 'all' or 'none', 'true' and 'false'
203201
- `wait_timeout` (Number) max time to wait per Kubernetes or host to be healthy. (Configured in minutes)
204202

0 commit comments

Comments
 (0)