@@ -11,6 +11,7 @@ import (
11
11
"regexp"
12
12
"sort"
13
13
"strings"
14
+ "time"
14
15
15
16
kubeflowv1 "github.com/StatCan/kubeflow-controller/pkg/apis/kubeflowcontroller/v1"
16
17
"github.com/andanhm/go-prettytime"
@@ -34,6 +35,9 @@ const SharedMemoryVolumePath string = "/dev/shm"
34
35
// EnvKfLanguage String.
35
36
const EnvKfLanguage string = "KF_LANG"
36
37
38
+ // StoppedAnnotation String.
39
+ const StoppedAnnotation string = "stopped"
40
+
37
41
type volumetype string
38
42
39
43
const (
@@ -96,6 +100,10 @@ type notebooksresponse struct {
96
100
Notebooks []notebookresponse `json:"notebooks"`
97
101
}
98
102
103
+ type updatenotebookrequest struct {
104
+ Stopped bool `json:"stopped"`
105
+ }
106
+
99
107
//
100
108
// EVENT_TYPE_NORMAL = "Normal"
101
109
// EVENT_TYPE_WARNING = "Warning"
@@ -558,3 +566,62 @@ func (s *server) DeleteNotebook(w http.ResponseWriter, r *http.Request) {
558
566
Success : true ,
559
567
})
560
568
}
569
+
570
+ func (s * server ) UpdateNotebook (w http.ResponseWriter , r * http.Request ) {
571
+ vars := mux .Vars (r )
572
+ namespaceName := vars ["namespace" ]
573
+ notebookName := vars ["notebook" ]
574
+
575
+ log .Printf ("deleting notebook %q for %q" , notebookName , namespaceName )
576
+
577
+ // Read the incoming notebook
578
+ body , err := ioutil .ReadAll (r .Body )
579
+ if err != nil {
580
+ s .error (w , r , err )
581
+ return
582
+ }
583
+ defer r .Body .Close ()
584
+
585
+ var req updatenotebookrequest
586
+ err = json .Unmarshal (body , & req )
587
+ if err != nil {
588
+ s .error (w , r , err )
589
+ return
590
+ }
591
+
592
+ // Read existing notebook
593
+ notebook , err := s .listers .notebooks .Notebooks (namespaceName ).Get (notebookName )
594
+ if err != nil {
595
+ s .error (w , r , err )
596
+ return
597
+ }
598
+
599
+ update := false
600
+ updatedNotebook := notebook .DeepCopy ()
601
+
602
+ // Compare start/stopped state
603
+ if _ , ok := notebook .Annotations [StoppedAnnotation ]; ok != req .Stopped {
604
+ update = true
605
+
606
+ if req .Stopped {
607
+ // Set the stopped annotation
608
+ updatedNotebook .Annotations [StoppedAnnotation ] = time .Now ().Format (time .RFC3339 )
609
+ } else {
610
+ // Remove the stopped annotation
611
+ delete (updatedNotebook .Annotations , StoppedAnnotation )
612
+ }
613
+ }
614
+
615
+ if update {
616
+ _ , err = s .clientsets .kubeflow .KubeflowV1 ().Notebooks (namespaceName ).Update (r .Context (), updatedNotebook , v1.UpdateOptions {})
617
+ if err != nil {
618
+ s .error (w , r , err )
619
+ return
620
+ }
621
+ }
622
+
623
+ s .respond (w , r , APIResponse {
624
+ Success : true ,
625
+ Status : http .StatusOK ,
626
+ })
627
+ }
0 commit comments