Skip to content

Commit

Permalink
Add OWNERS and PROJECT and fix small issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Guo, Fei committed May 27, 2020
1 parent e0f7581 commit c1b5268
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
11 changes: 11 additions & 0 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# See: https://go.k8s.io/owners
approvers:
- charleszheng44
- Fei-Guo
- huangyuqi
- rambohe-ch
reviewers:
- charleszheng44
- Fei-Guo
- huangyuqi
- rambohe-ch
3 changes: 3 additions & 0 deletions PROJECT
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
version: "1"
domain: openyurt.io
repo: github.com/alibaba/openyurt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The major OpenYurt components consist of:
the node controller and the unit controller (not released yet) for different edge computing use cases. For example,
the Pods in the nodes that are in the `autonomy` mode will not be evicted from APIServer even if the
node heartbeats are missing.
- **Yurt tunnel server**: It connects with the `YurtTunnel` daemon running in each edge node via a
- **Yurt tunnel server**: It connects with the `TunnelAgent` daemon running in each edge node via a
reverse proxy to establish a secure network access between the cloud site control plane and the edge nodes
that are connected to the intranet.

Expand Down
Binary file modified img/arch.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions pkg/yurthub/cachemanager/cache_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1014,9 +1014,9 @@ func TestQueryCacheForList(t *testing.T) {
expectResult: expectData{
rv: "5",
data: map[string]struct{}{
"pod-default-mypod1-1": struct{}{},
"pod-default-mypod2-2": struct{}{},
"pod-default-mypod3-5": struct{}{},
"pod-default-mypod1-1": {},
"pod-default-mypod2-2": {},
"pod-default-mypod3-5": {},
},
},
},
Expand Down Expand Up @@ -1069,10 +1069,10 @@ func TestQueryCacheForList(t *testing.T) {
expectResult: expectData{
rv: "12",
data: map[string]struct{}{
"node-mynode1-6": struct{}{},
"node-mynode2-8": struct{}{},
"node-mynode3-10": struct{}{},
"node-mynode4-12": struct{}{},
"node-mynode1-6": {},
"node-mynode2-8": {},
"node-mynode3-10": {},
"node-mynode4-12": {},
},
},
},
Expand Down

0 comments on commit c1b5268

Please sign in to comment.