Add an annotation to ignore non-gce ingresses

This commit is contained in:
Prashanth Balasubramanian 2016-06-28 18:03:12 -07:00
parent cb05e7b18e
commit 8bbf869030
7 changed files with 60 additions and 9 deletions

View file

@ -76,7 +76,7 @@ func (fr *FirewallRules) Sync(nodePorts []int64, nodeNames []string) error {
if requiredPorts.Equal(existingPorts) {
return nil
}
glog.V(3).Infof("Firewall rule already %v exists, updating nodeports %v", name, nodePorts)
glog.V(3).Infof("Firewall rule %v already exists, updating nodeports %v", name, nodePorts)
return fr.cloud.UpdateFirewall(suffix, "GCE L7 firewall rule", fr.srcRange, nodePorts, nodeNames)
}