Skip to content

Commit 1e3d52f

Browse files
author
Marco Capuccini
authored
Merge pull request #31 from kubenow/feature/update-doc-tfvars
Rename terraform.tfvars to config.tfvars
2 parents e2fdee2 + 6dda954 commit 1e3d52f

6 files changed

+9
-9
lines changed

advanced_topics/cloudflare-dns.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Cloudflare DNS Records
22
======================
33
`Cloudflare <https://www.cloudflare.com>`_ runs one of the largest authoritative DNS networks in the world. In order to resolve domain names for exposed services, KubeNow can optionally configure the Cloudflare dynamic DNS service, so that a base domain name will resolve to the edge nodes (or the master node if no edge node is deployed).
44

5-
To configure the Cloudflare dynamic DNS service, it is sufficient to uncomment the following lines in the ``terraform.tfvars`` file, specifying credentials, domain and subdomain::
5+
To configure the Cloudflare dynamic DNS service, it is sufficient to uncomment the following lines in the ``config.tfvars`` file, specifying credentials, domain and subdomain::
66

77
# Cloudflare configuration (optional)
88
use_cloudflare = "true"

advanced_topics/cloudflare-proxied.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Cloudflare: Proxied Traffic
22
===========================
33
Incoming container traffic can be optionally proxied through the `Cloudflare <https://www.cloudflare.com>`_ servers. When operating in this mode Cloudflare provides HTTPS for container services, and it protects against distributed denial of service, customer data breach and malicious bot abuse.
44

5-
To enable Cloudflare proxied traffic, it is sufficient to uncomment the following lines in the ``terraform.tfvars`` file, specifying DNS records to be proxied::
5+
To enable Cloudflare proxied traffic, it is sufficient to uncomment the following lines in the ``config.tfvars`` file, specifying DNS records to be proxied::
66

77
# Cloudflare proxy (optional)
88
cloudflare_proxied = "true"

advanced_topics/edge-nodes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Edge Nodes
22
==========
33
Edge nodes are specialized service nodes with an associated public IP address, and they run `Traefik <https://traefik.io>`_ acting as reverse proxies, and load balancers, for the services that are exposed to the Internet. In the default settings, we don't deploy any edge node enabling the reverse proxy logic in the master node instead. However, in production settings we recommend to deploy one or more edge nodes to reduce the load in the master.
44

5-
To deploy edge nodes, it is sufficient to uncomment the following lines in the ``terraform.tfvars`` file, and to set the desired number of edge nodes, along with an available instance flavor::
5+
To deploy edge nodes, it is sufficient to uncomment the following lines in the ``config.tfvars`` file, and to set the desired number of edge nodes, along with an available instance flavor::
66

77
# Master configuration (mandatory in general, above all for single-server setup)
88
master_flavor = "your-master-flavor"

advanced_topics/glusterfs-nodes.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GlusterFS Nodes
22
===============
33
GlusterFS nodes are specialized service nodes. They run only `GlusterFS <https://www.gluster.org>`_ and they are attached to a block storage volume to provide additional capacity. In the default settings, we don't deploy GlusterFS nodes, as it is not required in many use cases. However, GlusterFS can be particularly convenient when a distributed file system is needed for container synchronization.
44

5-
To deploy GlusterFS nodes, it is sufficient to uncomment the following lines in the ``terraform.tfvars`` file, and to set the desired number of edge nodes, along with an available instance flavor and block storage disk size::
5+
To deploy GlusterFS nodes, it is sufficient to uncomment the following lines in the ``config.tfvars`` file, and to set the desired number of edge nodes, along with an available instance flavor and block storage disk size::
66

77
# Gluster configuration
88
glusternode_count = "1"

advanced_topics/single-node-deployments.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Single-Node Deployments
22
=======================
33
When resources are scarce, or for testing purpose, KubeNow enables single-node deployments. In fact, it is possible to deploy the master node only, which will automatically enabled for service scheduling.
44

5-
You can achieve this by commenting all of the lines for the other instance types (i.e. edge node, gluster node and worker node) in the ``terraform.tfvars`` file, leaving the master node only as it is shown below::
5+
You can achieve this by commenting all of the lines for the other instance types (i.e. edge node, gluster node and worker node) in the ``config.tfvars`` file, leaving the master node only as it is shown below::
66

77
# Master configuration (mandatory in general, above all for single-server setup)
88
master_flavor = "your-master-flavor"

getting_started/bootstrap.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Locate into ``my_deployment`` :
2828

2929
cd my_deployment
3030

31-
In the configuration file ``terraform.tfvars`` you will need to set at least:
31+
In the configuration file ``config.tfvars`` you will need to set at least:
3232

3333
**Cluster configuration**
3434

@@ -126,7 +126,7 @@ Locate into ``my_deployment`` :
126126

127127
cd my_deployment
128128

129-
In the configuration file ``terraform.tfvars`` you will need to set at least:
129+
In the configuration file ``config.tfvars`` you will need to set at least:
130130

131131
**Cluster configuration**
132132

@@ -193,7 +193,7 @@ Locate into ``my_deployment`` :
193193

194194
cd my_deployment
195195

196-
In the configuration file ``terraform.tfvars`` you will need to set at least:
196+
In the configuration file ``config.tfvars`` you will need to set at least:
197197

198198
**Cluster configuration**
199199

@@ -256,7 +256,7 @@ Locate into ``my_deployment`` :
256256

257257
cd my_deployment
258258

259-
In the configuration file ``terraform.tfvars`` you will need to set at least:
259+
In the configuration file ``config.tfvars`` you will need to set at least:
260260

261261
**Cluster configuration**
262262

0 commit comments

Comments
 (0)