mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-10-23 15:23:13 +08:00
141 lines
4.1 KiB
Go
141 lines
4.1 KiB
Go
package inject
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
errors2 "errors"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
v12 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
"k8s.io/cli-runtime/pkg/resource"
|
|
"k8s.io/client-go/util/retry"
|
|
"k8s.io/kubectl/pkg/cmd/util"
|
|
"k8s.io/utils/pointer"
|
|
|
|
"github.com/wencaiwulue/kubevpn/v2/pkg/controlplane"
|
|
plog "github.com/wencaiwulue/kubevpn/v2/pkg/log"
|
|
util2 "github.com/wencaiwulue/kubevpn/v2/pkg/util"
|
|
)
|
|
|
|
func InjectVPNSidecar(ctx context.Context, nodeID string, f util.Factory, connectNamespace string, object *resource.Info, c util2.PodRouteConfig, secret *v1.Secret, image string) error {
|
|
u := object.Object.(*unstructured.Unstructured)
|
|
|
|
podTempSpec, path, err := util2.GetPodTemplateSpecPath(u)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
clientset, err := f.KubernetesClientSet()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var ports []v1.ContainerPort
|
|
for _, container := range podTempSpec.Spec.Containers {
|
|
ports = append(ports, container.Ports...)
|
|
}
|
|
var portmap = make(map[int32]string)
|
|
for _, port := range ports {
|
|
portmap[port.ContainerPort] = fmt.Sprintf("%d", port.ContainerPort)
|
|
}
|
|
err = addEnvoyConfig(clientset.CoreV1().ConfigMaps(connectNamespace), object.Namespace, nodeID, c, nil, controlplane.ConvertContainerPort(ports...), portmap)
|
|
if err != nil {
|
|
plog.G(ctx).Errorf("Failed to add envoy config: %v", err)
|
|
return err
|
|
}
|
|
|
|
AddContainer(&podTempSpec.Spec, c, connectNamespace, secret, image)
|
|
|
|
workload := fmt.Sprintf("%s/%s", object.Mapping.Resource.Resource, object.Name)
|
|
helper := resource.NewHelper(object.Client, object.Mapping)
|
|
// pods without controller
|
|
if len(path) == 0 {
|
|
plog.G(ctx).Infof("Workload %s is not controlled by any controller", workload)
|
|
p := &v1.Pod{ObjectMeta: podTempSpec.ObjectMeta, Spec: podTempSpec.Spec}
|
|
CleanupUselessInfo(p)
|
|
if err = CreateAfterDeletePod(ctx, f, p, helper); err != nil {
|
|
return err
|
|
}
|
|
} else
|
|
// controllers
|
|
{
|
|
plog.G(ctx).Debugf("The %s is under controller management", workload)
|
|
p := []P{
|
|
{
|
|
Op: "replace",
|
|
Path: "/" + strings.Join(append(path, "spec"), "/"),
|
|
Value: podTempSpec.Spec,
|
|
},
|
|
}
|
|
marshal, _ := json.Marshal(append(p))
|
|
_, err = helper.Patch(object.Namespace, object.Name, types.JSONPatchType, marshal, &v12.PatchOptions{})
|
|
if err != nil {
|
|
plog.G(ctx).Errorf("Failed to inject proxy container: %v, exiting...", err)
|
|
return err
|
|
}
|
|
}
|
|
err = util2.RolloutStatus(ctx, f, object.Namespace, workload, time.Minute*60)
|
|
return err
|
|
}
|
|
|
|
func CreateAfterDeletePod(ctx context.Context, factory util.Factory, p *v1.Pod, helper *resource.Helper) error {
|
|
_, err := helper.DeleteWithOptions(p.Namespace, p.Name, &v12.DeleteOptions{
|
|
GracePeriodSeconds: pointer.Int64(0),
|
|
})
|
|
if err != nil {
|
|
plog.G(ctx).Errorf("Failed to delete resource: %s %s, ignore, err: %v", p.Namespace, p.Name, err)
|
|
}
|
|
err = retry.OnError(wait.Backoff{
|
|
Steps: 10,
|
|
Duration: 50 * time.Millisecond,
|
|
Factor: 5.0,
|
|
Jitter: 1,
|
|
}, func(err error) bool {
|
|
if !errors.IsAlreadyExists(err) {
|
|
return true
|
|
}
|
|
clientset, err := factory.KubernetesClientSet()
|
|
get, err := clientset.CoreV1().Pods(p.Namespace).Get(context.Background(), p.Name, v12.GetOptions{})
|
|
if err != nil || get.Status.Phase != v1.PodRunning {
|
|
return true
|
|
}
|
|
return false
|
|
}, func() error {
|
|
if _, err := helper.Create(p.Namespace, true, p); err != nil {
|
|
return err
|
|
}
|
|
return errors2.New("")
|
|
})
|
|
if err != nil {
|
|
if errors.IsAlreadyExists(err) {
|
|
return nil
|
|
}
|
|
plog.G(ctx).Errorf("Failed to create resource: %s %s, err: %v", p.Namespace, p.Name, err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func CleanupUselessInfo(pod *v1.Pod) {
|
|
pod.SetSelfLink("")
|
|
pod.SetGeneration(0)
|
|
pod.SetResourceVersion("")
|
|
pod.SetUID("")
|
|
pod.SetDeletionTimestamp(nil)
|
|
pod.SetSelfLink("")
|
|
pod.SetManagedFields(nil)
|
|
pod.SetOwnerReferences(nil)
|
|
}
|
|
|
|
type P struct {
|
|
Op string `json:"op,omitempty"`
|
|
Path string `json:"path,omitempty"`
|
|
Value interface{} `json:"value,omitempty"`
|
|
}
|