-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add clean egress #1178
Add clean egress #1178
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1178 +/- ##
=======================================
Coverage 84.16% 84.16%
=======================================
Files 19 19
Lines 3170 3170
=======================================
Hits 2668 2668
Misses 390 390
Partials 112 112
Flags with carried forward coverage won't be shown. Click here to find out more. |
d045808
to
d065b08
Compare
483984e
to
49cc9ce
Compare
tools/scripts/cleanCRD.sh
Outdated
# kubectl patch crd egresstunnels.egressgateway.spidernet.io -p '{"metadata":{"finalizers": []}}' --type=merge | ||
# kubectl patch crd egressgateways.egressgateway.spidernet.io -p '{"metadata":{"finalizers": []}}' --type=merge | ||
|
||
kubectl get crd | grep egressgateway.spidernet.io | awk '{print $1}' | xargs kubectl delete crd |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
如果这不是我们 文档中的 卸载的标准流程,不应该有这个脚本
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已经将这个脚本删除
49cc9ce
to
eb9195c
Compare
@@ -174,9 +174,20 @@ jobs: | |||
path: ${{ env.E2E_GINKGO_REPORT_PATH }} | |||
retention-days: 30 | |||
|
|||
- name: helm uninstalls egress |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个CI 目的不是简单为了卸载,而是 在按照标准卸载流程后,确认是否还有残余垃圾。因此,是否有该 确认 代码 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是的,晚点我加一下
any update ? |
do it tody |
Signed-off-by: bzsuni <[email protected]>
eb9195c
to
0452110
Compare
Fix #670