РР
Size: a a a
РР
DZ
JF
SS
SS
JF
SS
RG
i
N
RG
RG
RG
N
.kubernetes.io" в провайдере kubernetes (labels, annotations ...) ?N
N
By default, the provider ignores any labels whose key names end with kubernetes.io. This is necessary because such labels can be mutated by server-side components and consequently cause a perpetual diff in the Terraform plan output. If you explicitly specify any such labels in the configuration template then Terraform will consider these as normal resource attributes and manage them as expected (while still avoiding the perpetual diff problem).N
N
output "ELB_dns_hostname" {
value = "${kubernetes_service.ingress-nginx.load_balancer_ingress.hostname}"
}output "loadbalancer" {
value = "${module.loadbalancer.ELB_dns_hostname}"
} * module.loadbalancer.output.ELB_dns_hostname: Resource 'kubernetes_service.ingress-nginx' does not have attribute 'load_balancer_ingress.hostname' for variable 'kubernetes_service.ingress-nginx.load_balancer_ingress.hostname'N
output "ELB_dns_hostname" {
value = "${kubernetes_service.ingress-nginx.load_balancer_ingress}"
}