Skip to content

Commit

Permalink
remove dns from ls and bump new version
Browse files Browse the repository at this point in the history
  • Loading branch information
oilbeater committed Apr 15, 2019
1 parent bf2016f commit adf655c
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 18 deletions.
33 changes: 21 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
# CHANGELOG

## v0.2.0 —— 2019/04/15
### Features
* Distributed Gateway for external connectivity
* Dynamic QoS for pod ingress/egress bandwidth
* Subnet isolation
### Bug Fixes
* Delete empty lb to improve performance
* Delete lb at node switch
* Delete ovn embedded dns
* Fix ovn restart failed issue


## v0.1.0 —— 2019/03/12
### 功能
* 单机部署
* openvswitch-2.10.1
* Geneve 二层网络
* 自动分配 IP/Mac IPAM
* Pod/Workload 指定 IP
* Namespace 指定子网
* Namespace 共享子网
* 主机和容器网络互通
### 问题
* 容器无法访问外网
* 控制平面没有高可用
### Features
* IP/Mac automatic allocation
* IP/Mac static allocation
* Namespace bind subnet
* Namespaces share subnet
* Connectivity between node and pod
### Issues
* Pod can not access external network
* No HA for control plan
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.1.0-1
v0.2.0
11 changes: 6 additions & 5 deletions pkg/ovs/ovn-nbctl.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,12 @@ func (c Client) CreateLogicalSwitch(ls, subnet, gateway, excludeIps string) erro
return err
}

err = c.AddDnsTableToLogicalSwitch(ls)
if err != nil {
klog.Errorf("failed to add cluster dns to %s, %v", ls, err)
return err
}
// DO NOT add dns table until we find the reason why we can not resolve external domains
//err = c.AddDnsTableToLogicalSwitch(ls)
//if err != nil {
// klog.Errorf("failed to add cluster dns to %s, %v", ls, err)
// return err
//}
}

return nil
Expand Down

0 comments on commit adf655c

Please sign in to comment.