mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
Disable default nginx ingress controller
This commit is contained in:
parent
3df5d4cc5b
commit
3de1423ed5
@ -2,6 +2,10 @@ provider "rke" {
|
|||||||
debug = true
|
debug = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
provider "kubernetes" {
|
||||||
|
config_path = "${path.root}/kube_config.yaml"
|
||||||
|
}
|
||||||
|
|
||||||
provider "helm" {
|
provider "helm" {
|
||||||
kubernetes {
|
kubernetes {
|
||||||
config_path = "${path.root}/kube_config.yaml"
|
config_path = "${path.root}/kube_config.yaml"
|
||||||
@ -40,6 +44,10 @@ resource rke_cluster "cluster" {
|
|||||||
ssh_key = file("~/.ssh/id_rsa")
|
ssh_key = file("~/.ssh/id_rsa")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ingress {
|
||||||
|
provider = "none"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "local_file" "kube_config_yaml" {
|
resource "local_file" "kube_config_yaml" {
|
||||||
|
Loading…
Reference in New Issue
Block a user