Skip to content

Commit

Permalink
d
Browse files Browse the repository at this point in the history
Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

grpc stream

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nethttp supports ingress and loadbalancer

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

nginx

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

d

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>

typo

Signed-off-by: weizhou.lan@daocloud.io <weizhou.lan@daocloud.io>
  • Loading branch information
weizhoublue committed Dec 6, 2022
1 parent 33ff10d commit 3f708ef
Show file tree
Hide file tree
Showing 49 changed files with 1,422 additions and 172 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-cherry-pick.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
git branch
git config user.email "robot@example.com"
git config user.name "robot"
gh label create ${{ env.CHERRYPICK_LABEL }} --force
gh label create ${{ env.CHERRYPICK_LABEL }} || true
for BRANCH in $WANT_MERGE_BRANCH_LIST ; do
echo "************** cherry for branch ${BRANCH}"
if ! git ls-remote --exit-code --heads origin ${BRANCH} ; then
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/auto-pr-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ jobs:
e2e_labels: ${{ needs.prepare.outputs.e2e_labels }}
secrets: inherit


e2e_ipv6:
needs: [call_build_ci_image, prepare]
if: ${{ needs.prepare.outputs.e2e_enabled == 'true' && needs.prepare.outputs.ipfamily_ipv6only_e2e == 'true' }}
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,13 @@ e2e_init:
make -C test check_images_ready
make -C test init_kind_env
make -C test deploy_multus
make -C test deploy_metallb
make -C test deploy_contour
make -C test deploy_project
make -C test install_example_app



.PHONY: e2e_run
e2e_run:
make -C test e2e_test
Expand Down
27 changes: 26 additions & 1 deletion Makefile.defs
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,33 @@ E2E_KIND_IPV6_SERVICE_CIDR = fd41::/108
E2E_KIND_IPV4_POD_CIDR = 172.40.0.0/16
E2E_KIND_IPV6_POD_CIDR = fd40::/48

E2E_PROXY_REGISTER := m.daocloud.
#E2E_PROXY_REGISTER :=

E2E_ENABLE_MULTUS = false
MULTUS_CHART_VERSION = 0.1.4
MULTUS_CHART_REPO = https://release.daocloud.io/chartrepo/system
MULTUS_REPO_NAME = network-release
MULTUS_CHART_NAME = multus-underlay
MULTUS_CHART_NAME = multus-underlay

E2E_ENABLE_METALLB = true
METALLB_CHART_VERSION = 0.13.7
METALLB_CHART_REPO ?= https://metallb.github.io/metallb
METALLB_REPO_NAME = metallb
METALLB_CHART_NAME = metallb


E2E_ENABLE_CONTOUR = true
CONTOUR_CHART_VERSION = 10.1.1
CONTOUR_CHART_REPO ?= https://charts.bitnami.com/bitnami
CONTOUR_REPO_NAME = contour
CONTOUR_CHART_NAME = contour


E2E_ENABLE_NGINX = false
NGINX_CHART_VERSION = 4.4.0
NGINX_CHART_REPO ?= https://kubernetes.github.io/ingress-nginx
NGINX_REPO_NAME = ingress-nginx
NGINX_CHART_NAME = ingress-nginx


2 changes: 1 addition & 1 deletion api/v1/agentGrpc/agent_grpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ message ExecResponseMsg {

service CmdService {
// execute a remote command
rpc ExecRemoteCmd( ExecRequestMsg ) returns (ExecResponseMsg) {}
rpc ExecRemoteCmd( stream ExecRequestMsg ) returns ( stream ExecResponseMsg) {}
}

84 changes: 58 additions & 26 deletions api/v1/agentGrpc/agent_grpc_grpc.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions api/v1/agentServer/client/echo/echo_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

131 changes: 131 additions & 0 deletions api/v1/agentServer/client/echo/get_spiderdoctoragent_parameters.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3f708ef

Please sign in to comment.