Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
docs: Add enable_tls_bootstrap parameter
Browse files Browse the repository at this point in the history
Add to configuration reference docs of Packet, AWS and baremetal.

Signed-off-by: Suraj Deshmukh <suraj@kinvolk.io>
  • Loading branch information
surajssd committed Aug 27, 2020
1 parent 8503a9a commit 003e13c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/configuration-reference/platforms/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ cluster "aws" {
enable_aggregation = true
enable_tls_bootstrap = true
disk_size = var.disk_size
disk_type = var.disk_type
Expand Down Expand Up @@ -216,6 +218,7 @@ worker_pool "my-worker-pool" {
| `controller_clc_snippets` | Controller Flatcar Container Linux Config snippets. | [] | list(string) | false |
| `region` | AWS region to use for deploying the cluster. | "eu-central-1" | string | false |
| `enable_aggregation` | Enable the Kubernetes Aggregation Layer. | true | bool | false |
| `enable_tls_bootstrap` | Enable TLS bootstraping for Kubelet. | true | bool | false |
| `disk_size` | Size of the EBS volume in GB. | 40 | number | false |
| `disk_type` | Type of the EBS volume (e.g. standard, gp2, io1). | "gp2" | string | false |
| `disk_iops` | IOPS of the EBS volume (e.g 100). | 0 | number | false |
Expand Down
3 changes: 3 additions & 0 deletions docs/configuration-reference/platforms/baremetal.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ cluster "bare-metal" {
os_channel = "flatcar-stable"
enable_tls_bootstrap = true
oidc {
issuer_url = var.oidc_issuer_url
client_id = var.oidc_client_id
Expand Down Expand Up @@ -147,6 +149,7 @@ os_version = var.custom_default_os_version
| `ssh_pubkeys` | List of SSH public keys for user `core`. Each element must be specified in a valid OpenSSH public key format, as defined in RFC 4253 Section 6.6, e.g. "ssh-rsa AAAAB3N...". | - | list(string) | true |
| `os_version` | Flatcar Container Linux version to install. Version such as "2303.3.1" or "current". | "current" | string | false |
| `os_channel` | Flatcar Container Linux channel to install from ("flatcar-stable", "flatcar-beta", "flatcar-alpha", "flatcar-edge"). | "flatcar-stable" | string | false |
| `enable_tls_bootstrap` | Enable TLS bootstraping for Kubelet. | true | bool | false |
| `oidc` | OIDC configuration block. | - | object | false |
| `oidc.issuer_url` | URL of the provider which allows the API server to discover public signing keys. Only URLs which use the https:// scheme are accepted. | - | string | false |
| `oidc.client_id` | A client id that all tokens must be issued for. | "gangway" | string | false |
Expand Down
3 changes: 3 additions & 0 deletions docs/configuration-reference/platforms/packet.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ cluster "packet" {
enable_aggregation = true
enable_tls_bootstrap = true
enable_reporting = false
network_ip_autodetection_method = "first-found"
Expand Down Expand Up @@ -218,6 +220,7 @@ node_type = var.custom_default_worker_type
| `management_cidrs` | List of IPv4 CIDRs authorized to access or manage the cluster. Example ["0.0.0.0/0"] to allow all. | - | list(string) | true |
| `node_private_cidr` | Private IPv4 CIDR of the nodes used to allow inter-node traffic. Example "10.0.0.0/8" | - | string | true |
| `enable_aggregation` | Enable the Kubernetes Aggregation Layer. | true | bool | false |
| `enable_tls_bootstrap` | Enable TLS bootstraping for Kubelet. | true | bool | false |
| `network_mtu` | CNI interface MTU | 1480 | number | false |
| `pod_cidr` | CIDR IPv4 range to assign Kubernetes pods. | "10.2.0.0/16" | string | false |
| `service_cidr` | CIDR IPv4 range to assign Kubernetes services. | "10.3.0.0/16" | string | false |
Expand Down

0 comments on commit 003e13c

Please sign in to comment.