Skip to content

Commit

Permalink
Merging the code ocp-power-automation#220
Browse files Browse the repository at this point in the history
Merging the code ocp-power-automation#220
  • Loading branch information
torwen1 committed Apr 6, 2022
1 parent b442d4c commit bf134c2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion docs/var.tfvars-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ total 13452
This variable can be used to define a different source for the helm package, like a local web server. By default, the help package will be downloaded from the official internet source.
```
helm_repo = "https://<HTTP SERVER>/python-modules/helm-latest-linux-ppc64le.tar.gz"
```

This variable specify the MTU value for the private network interface on RHEL and RHCOS nodes. The CNI network will have <private_network_mtu> - 50 for OpenshiftSDN and <private_network_mtu> - 100 for OVNKubernetes network provider.
```
Expand Down Expand Up @@ -317,4 +318,4 @@ cni_network_provider = "OpenshiftSDN"
cluster_network_cidr = "10.128.0.0/14"
cluster_network_hostprefix = "23"
service_network = "172.30.0.0/16"
```
```
3 changes: 1 addition & 2 deletions modules/5_install/install.tf
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ resource "null_resource" "pre_install" {
}

resource "null_resource" "install" {
depends_on = [null_resource.prep_playbooks_tools_git, null_resource.prep_playbooks_tools_curl,null_resource.pre_install]
depends_on = [null_resource.prep_playbooks_tools_git, null_resource.prep_playbooks_tools_curl, null_resource.pre_install]

triggers = {
worker_count = length(var.worker_ips)
Expand Down Expand Up @@ -220,4 +220,3 @@ resource "null_resource" "upgrade" {
]
}
}

2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -466,4 +466,4 @@ variable "local_registry_image" {
variable "ocp_release_tag" {
description = "The version of OpenShift you want to sync."
default = "4.4.9-ppc64le"
}
}

0 comments on commit bf134c2

Please sign in to comment.