Fetch the repository succeeded.
package ingresshostgen
import (
"fmt"
"strings"
"github.com/rancher/rancher/pkg/controllers/user/approuter"
"github.com/rancher/rancher/pkg/settings"
v1beta12 "github.com/rancher/types/apis/extensions/v1beta1"
"github.com/rancher/types/config"
"k8s.io/api/extensions/v1beta1"
)
type IngressHostGen struct {
ingress v1beta12.IngressInterface
}
func Register(userOnlyContext *config.UserOnlyContext) {
c := &IngressHostGen{
ingress: userOnlyContext.Extensions.Ingresses(""),
}
userOnlyContext.Extensions.Ingresses("").AddHandler("ingress-host-gen", c.sync)
}
func isGeneratedDomain(obj *v1beta1.Ingress, host, domain string) bool {
parts := strings.Split(host, ".")
return strings.HasSuffix(host, "."+domain) && len(parts) == 8 && parts[1] == obj.Namespace
}
func (i *IngressHostGen) sync(key string, obj *v1beta1.Ingress) error {
if obj == nil {
return nil
}
ipDomain := settings.IngressIPDomain.Get()
if ipDomain == "" {
return nil
}
var xipHost string
for _, status := range obj.Status.LoadBalancer.Ingress {
if status.IP != "" {
xipHost = fmt.Sprintf("%s.%s.%s.%s", obj.Name, obj.Namespace, status.IP, ipDomain)
break
}
}
if xipHost == "" {
return nil
}
changed := false
for _, rule := range obj.Spec.Rules {
if (isGeneratedDomain(obj, rule.Host, ipDomain) || rule.Host == ipDomain) && rule.Host != xipHost && ipDomain != approuter.RdnsIPDomain {
changed = true
break
}
}
if !changed {
return nil
}
obj = obj.DeepCopy()
for i, rule := range obj.Spec.Rules {
if strings.HasSuffix(rule.Host, ipDomain) {
obj.Spec.Rules[i].Host = xipHost
}
}
_, err := i.ingress.Update(obj)
return err
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。