deployment.go 838 B

12345678910111213141516171819202122232425262728
  1. package daemonset
  2. import (
  3. "context"
  4. pb "sghgogs.com/micro/k8s-service/proto"
  5. )
  6. type DaemonSet struct {
  7. }
  8. func (svc *DaemonSet) GetDaemonSetList(ctx context.Context, req *pb.GetDaemonSetListRequest, rsp *pb.GetDaemonSetListResponse) error {
  9. return nil
  10. }
  11. func (svc *DaemonSet) GetDaemonSet(ctx context.Context, req *pb.GetDaemonSetRequest, rsp *pb.GetDaemonSetResponse) error {
  12. return nil
  13. }
  14. func (svc *DaemonSet) UpdateDaemonSet(ctx context.Context, req *pb.UpdateDaemonSetRequest, rsp *pb.UpdateDaemonSetResponse) error {
  15. return nil
  16. }
  17. func (svc *DaemonSet) CreateDaemonSet(ctx context.Context, req *pb.CreateDaemonSetRequest, rsp *pb.CreateDaemonSetResponse) error {
  18. return nil
  19. }
  20. func (svc *DaemonSet) DeleteDaemonSet(ctx context.Context, req *pb.DeleteDaemonSetRequest, rsp *pb.DeleteDaemonSetResponse) error {
  21. return nil
  22. }