This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 282
Use network module #23
Merged
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,14 +65,14 @@ provider "helm" { | |
module "gke_cluster" { | ||
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:gruntwork-io/gke-cluster.git//modules/gke-cluster?ref=v0.0.1" | ||
# source = "git::[email protected]:gruntwork-io/terraform-google-gke.git//modules/gke-cluster?ref=v0.0.4" | ||
source = "../../modules/gke-cluster" | ||
|
||
name = "${var.cluster_name}" | ||
|
||
project = "${var.project}" | ||
location = "${var.location}" | ||
network = "${google_compute_network.main.name}" | ||
network = "${google_compute_network.main.self_link}" | ||
subnetwork = "${google_compute_subnetwork.main.self_link}" | ||
|
||
cluster_secondary_range_name = "${google_compute_subnetwork.main.secondary_ip_range.0.range_name}" | ||
|
@@ -140,7 +140,7 @@ resource "google_container_node_pool" "node_pool" { | |
module "gke_service_account" { | ||
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:gruntwork-io/gke-cluster.git//modules/gke-service-account?ref=v0.0.1" | ||
# source = "git::[email protected]:gruntwork-io/terraform-google-gke.git//modules/gke-service-account?ref=v0.0.4" | ||
source = "../../modules/gke-service-account" | ||
|
||
name = "${var.cluster_service_account_name}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
|
||
metadata: | ||
name: nginx | ||
labels: | ||
app: nginx | ||
tier: backend | ||
spec: | ||
replicas: 2 | ||
selector: | ||
matchLabels: | ||
app: nginx | ||
template: | ||
metadata: | ||
labels: | ||
app: nginx | ||
tier: backend | ||
spec: | ||
containers: | ||
- name: nginx | ||
image: nginx | ||
ports: | ||
- containerPort: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,18 +32,18 @@ provider "google-beta" { | |
module "gke_cluster" { | ||
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:gruntwork-io/gke-cluster.git//modules/gke-cluster?ref=v0.0.4" | ||
# source = "git::[email protected]:gruntwork-io/terraform-google-gke.git//modules/gke-cluster?ref=v0.0.4" | ||
source = "../../modules/gke-cluster" | ||
|
||
name = "${var.cluster_name}" | ||
|
||
project = "${var.project}" | ||
location = "${var.location}" | ||
network = "${google_compute_network.main.name}" | ||
subnetwork = "${google_compute_subnetwork.main.self_link}" | ||
network = "${module.vpc_network.network}" | ||
subnetwork = "${module.vpc_network.public_subnetwork}" | ||
|
||
# When creating a private cluster, the 'master_ipv4_cidr_block' has to be defined and the size must be /28 | ||
master_ipv4_cidr_block = "10.5.0.0/28" | ||
master_ipv4_cidr_block = "${var.master_ipv4_cidr_block}" | ||
|
||
# This setting will make the cluster private | ||
enable_private_nodes = "true" | ||
|
@@ -60,7 +60,7 @@ module "gke_cluster" { | |
}] | ||
}] | ||
|
||
cluster_secondary_range_name = "${google_compute_subnetwork.main.secondary_ip_range.0.range_name}" | ||
cluster_secondary_range_name = "${module.vpc_network.public_subnetwork_secondary_range_name}" | ||
} | ||
|
||
# --------------------------------------------------------------------------------------------------------------------- | ||
|
@@ -95,7 +95,13 @@ resource "google_container_node_pool" "node_pool" { | |
private-pools-example = "true" | ||
} | ||
|
||
tags = ["private-pool-example"] | ||
# Add a private tag to the instances. See the network access tier table for full details: | ||
# https://github.com/gruntwork-io/terraform-google-network/tree/master/modules/vpc-network#access-tier | ||
tags = [ | ||
"${module.vpc_network.private}", | ||
"private-pool-example", | ||
] | ||
|
||
disk_size_gb = "30" | ||
disk_type = "pd-standard" | ||
preemptible = false | ||
|
@@ -125,7 +131,7 @@ resource "google_container_node_pool" "node_pool" { | |
module "gke_service_account" { | ||
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:gruntwork-io/gke-cluster.git//modules/gke-service-account?ref=v0.0.1" | ||
# source = "git::[email protected]:gruntwork-io/terraform-google-gke.git//modules/gke-service-account?ref=v0.0.4" | ||
source = "../../modules/gke-service-account" | ||
|
||
name = "${var.cluster_service_account_name}" | ||
|
@@ -137,26 +143,20 @@ module "gke_service_account" { | |
# CREATE A NETWORK TO DEPLOY THE CLUSTER TO | ||
# --------------------------------------------------------------------------------------------------------------------- | ||
|
||
# TODO(rileykarson): Add proper VPC network config once we've made a VPC module | ||
module "vpc_network" { | ||
source = "git::[email protected]:gruntwork-io/terraform-google-network.git//modules/vpc-network?ref=v0.0.2" | ||
|
||
name = "${var.cluster_name}-network-${random_string.suffix.result}" | ||
project = "${var.project}" | ||
region = "${var.region}" | ||
|
||
cidr_block = "${var.vpc_cidr_block}" | ||
secondary_cidr_block = "${var.vpc_secondary_cidr_block}" | ||
} | ||
|
||
# Use a random suffix to prevent overlap in network names | ||
resource "random_string" "suffix" { | ||
length = 4 | ||
special = false | ||
upper = false | ||
} | ||
|
||
resource "google_compute_network" "main" { | ||
name = "${var.cluster_name}-network-${random_string.suffix.result}" | ||
auto_create_subnetworks = "false" | ||
} | ||
|
||
resource "google_compute_subnetwork" "main" { | ||
name = "${var.cluster_name}-subnetwork-${random_string.suffix.result}" | ||
ip_cidr_range = "10.3.0.0/17" | ||
region = "${var.region}" | ||
network = "${google_compute_network.main.self_link}" | ||
|
||
secondary_ip_range { | ||
range_name = "private-cluster-pods" | ||
ip_cidr_range = "10.4.0.0/18" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,14 +33,14 @@ provider "google-beta" { | |
module "gke_cluster" { | ||
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:gruntwork-io/gke-cluster.git//modules/gke-cluster?ref=v0.0.3" | ||
# source = "git::[email protected]:gruntwork-io/terraform-google-gke.git//modules/gke-cluster?ref=v0.0.4" | ||
source = "../../modules/gke-cluster" | ||
|
||
name = "${var.cluster_name}" | ||
|
||
project = "${var.project}" | ||
location = "${var.location}" | ||
network = "${google_compute_network.main.name}" | ||
network = "${google_compute_network.main.self_link}" | ||
subnetwork = "${google_compute_subnetwork.main.self_link}" | ||
|
||
cluster_secondary_range_name = "${google_compute_subnetwork.main.secondary_ip_range.0.range_name}" | ||
|
@@ -108,7 +108,7 @@ resource "google_container_node_pool" "node_pool" { | |
module "gke_service_account" { | ||
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you | ||
# to a specific version of the modules, such as the following example: | ||
# source = "git::[email protected]:gruntwork-io/gke-cluster.git//modules/gke-service-account?ref=v0.0.1" | ||
# source = "git::[email protected]:gruntwork-io/terraform-google-gke.git//modules/gke-service-account?ref=v0.0.4" | ||
source = "../../modules/gke-service-account" | ||
|
||
name = "${var.cluster_service_account_name}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice 👍