mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-05 23:36:59 +08:00

* feat: move cmd reset to daemon * feat: move cmd reset to daemon --------- Co-authored-by: wencaiwulue <895703375@qq.com>
91 lines
2.6 KiB
Go
91 lines
2.6 KiB
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/client"
|
|
log "github.com/sirupsen/logrus"
|
|
corev1 "k8s.io/api/core/v1"
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"sigs.k8s.io/yaml"
|
|
|
|
"github.com/wencaiwulue/kubevpn/v2/pkg/config"
|
|
"github.com/wencaiwulue/kubevpn/v2/pkg/controlplane"
|
|
)
|
|
|
|
// Reset
|
|
// 1) quit daemon
|
|
// 2) get all proxy-resources from configmap
|
|
// 3) cleanup all containers
|
|
// 4) cleanup hosts
|
|
func (c *ConnectOptions) Reset(ctx context.Context) error {
|
|
err := c.LeaveProxyResources(ctx)
|
|
if err != nil {
|
|
log.Errorf("leave proxy resources error: %v", err)
|
|
} else {
|
|
log.Infof("leave proxy resources success")
|
|
}
|
|
|
|
log.Infof("cleanup k8s resource")
|
|
cleanupK8sResource(ctx, c.clientset, c.Namespace, config.ConfigMapPodTrafficManager, false)
|
|
|
|
_ = c.CleanupLocalContainer(ctx)
|
|
return nil
|
|
}
|
|
|
|
func (c *ConnectOptions) CleanupLocalContainer(ctx context.Context) error {
|
|
cli, err := client.NewClientWithOpts(client.FromEnv, client.WithAPIVersionNegotiation())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var networkResource types.NetworkResource
|
|
networkResource, err = cli.NetworkInspect(ctx, config.ConfigMapPodTrafficManager, types.NetworkInspectOptions{})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(networkResource.Containers) == 0 {
|
|
err = cli.NetworkRemove(ctx, config.ConfigMapPodTrafficManager)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func (c *ConnectOptions) LeaveProxyResources(ctx context.Context) (err error) {
|
|
if c == nil || c.clientset == nil {
|
|
return
|
|
}
|
|
|
|
mapInterface := c.clientset.CoreV1().ConfigMaps(c.Namespace)
|
|
var cm *corev1.ConfigMap
|
|
cm, err = mapInterface.Get(ctx, config.ConfigMapPodTrafficManager, metav1.GetOptions{})
|
|
if err != nil && !apierrors.IsNotFound(err) {
|
|
return
|
|
}
|
|
if cm == nil || cm.Data == nil || len(cm.Data[config.KeyEnvoy]) == 0 {
|
|
log.Infof("no proxy resources found")
|
|
return
|
|
}
|
|
var v = make([]*controlplane.Virtual, 0)
|
|
str := cm.Data[config.KeyEnvoy]
|
|
if err = yaml.Unmarshal([]byte(str), &v); err != nil {
|
|
log.Errorf("unmarshal envoy config error: %v", err)
|
|
return
|
|
}
|
|
localTunIPv4 := c.GetLocalTunIPv4()
|
|
for _, virtual := range v {
|
|
// deployments.apps.ry-server --> deployments.apps/ry-server
|
|
lastIndex := strings.LastIndex(virtual.Uid, ".")
|
|
uid := virtual.Uid[:lastIndex] + "/" + virtual.Uid[lastIndex+1:]
|
|
log.Infof("leave resource: %s", uid)
|
|
err = UnPatchContainer(c.factory, c.clientset.CoreV1().ConfigMaps(c.Namespace), c.Namespace, uid, localTunIPv4)
|
|
if err != nil {
|
|
log.Errorf("unpatch container error: %v", err)
|
|
continue
|
|
}
|
|
log.Infof("leave resource: %s successfully", uid)
|
|
}
|
|
return err
|
|
}
|