Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default CNI to OVNKubernetes #257

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/var.tfvars-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ eus_upstream = "" (e.g. `"https://ppc64le.ocp.releases.ci.openshif
This variable is used to set the default Container Network Interface (CNI) network provider such as OpenShiftSDN or OVNKubernetes

```
cni_network_provider = "OpenshiftSDN"
cni_network_provider = "OVNKubernetes"
cluster_network_cidr = "10.128.0.0/14"
cluster_network_hostprefix = "23"
service_network = "172.30.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion var.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ cluster_id = "" # It will use random generated id with cluster_id
#eus_upgrade_image = "" #(quay.io/openshift-release-dev/ocp-release@sha256:xyz..)
#eus_upstream = "" #https://ppc64le.ocp.releases.ci.openshift.org/graph

#cni_network_provider = "OpenshiftSDN"
#cni_network_provider = "OVNKubernetes"
#cluster_network_cidr = "10.128.0.0/14"
#cluster_network_hostprefix = "23"
#service_network = "172.30.0.0/16"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ variable "eus_upstream" {

variable "cni_network_provider" {
description = "Set the default Container Network Interface (CNI) network provider"
default = "OpenshiftSDN"
default = "OVNKubernetes"
}

variable "cluster_network_cidr" {
Expand Down