Skip to content

Commit

Permalink
Set default network policy provider to Calico
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-lane committed Jun 5, 2019
1 parent 063e70b commit f5fe605
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
| name | The name of the cluster (required) | string | n/a | yes |
| network | The VPC network to host the cluster in (required) | string | n/a | yes |
| network\_policy | Enable network policy addon | string | `"false"` | no |
| network\_policy\_provider | The network policy provider. | string | `"PROVIDER_UNSPECIFIED"` | no |
| network\_policy\_provider | The network policy provider. | string | `"CALICO"` | no |
| network\_project\_id | The project ID of the shared VPC's host (for shared vpc support) | string | `""` | no |
| node\_pools | List of maps containing node pools | list | `<list>` | no |
| node\_pools\_labels | Map of maps containing node labels by node-pool name | map | `<map>` | no |
Expand Down
2 changes: 1 addition & 1 deletion autogen/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ variable "network_policy" {

variable "network_policy_provider" {
description = "The network policy provider."
default = "PROVIDER_UNSPECIFIED"
default = "CALICO"
}

variable "maintenance_start_time" {
Expand Down
2 changes: 1 addition & 1 deletion modules/private-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
| name | The name of the cluster (required) | string | n/a | yes |
| network | The VPC network to host the cluster in (required) | string | n/a | yes |
| network\_policy | Enable network policy addon | string | `"false"` | no |
| network\_policy\_provider | The network policy provider. | string | `"PROVIDER_UNSPECIFIED"` | no |
| network\_policy\_provider | The network policy provider. | string | `"CALICO"` | no |
| network\_project\_id | The project ID of the shared VPC's host (for shared vpc support) | string | `""` | no |
| node\_pools | List of maps containing node pools | list | `<list>` | no |
| node\_pools\_labels | Map of maps containing node labels by node-pool name | map | `<map>` | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/private-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ variable "network_policy" {

variable "network_policy_provider" {
description = "The network policy provider."
default = "PROVIDER_UNSPECIFIED"
default = "CALICO"
}

variable "maintenance_start_time" {
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ variable "network_policy" {

variable "network_policy_provider" {
description = "The network policy provider."
default = "PROVIDER_UNSPECIFIED"
default = "CALICO"
}

variable "maintenance_start_time" {
Expand Down

0 comments on commit f5fe605

Please sign in to comment.