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