1
1
'use strict' ;
2
2
3
- // TODO: statefulSetController rename
4
- // Kube docs: http://kubernetes.io/docs/user-guide/statefulSet/
5
3
angular
6
4
. module ( 'openshiftConsole' )
7
5
. controller ( 'StatefulSetController' , function (
@@ -14,15 +12,13 @@ angular
14
12
ProjectsService ) {
15
13
16
14
$scope . projectName = $routeParams . project ;
17
- $scope . statefulSetName = $routeParams . statefulset || $routeParams . petset ; // TODO: eliminate petset fallback
15
+ $scope . statefulSetName = $routeParams . statefulset ;
18
16
$scope . forms = { } ;
19
17
$scope . alerts = { } ;
20
- // TODO: update getBreadcrumbs, currently returns:
21
- // Pet Sets > hello-statefulSet
22
- // But the link for `Pet Sets` isn't valid. Where do we want these to live?
18
+ // TODO: StatefulSet isn't a thing, should fall back to Deployments?
23
19
$scope . breadcrumbs = BreadcrumbsService . getBreadcrumbs ( {
24
20
name : $scope . statefulSetName ,
25
- kind : 'statefulSet' , // TODO: update to statefulSet
21
+ kind : 'statefulSet' ,
26
22
namespace : $routeParams . project
27
23
} ) ;
28
24
$scope . emptyMessage = "Loading..." ;
@@ -39,9 +35,7 @@ angular
39
35
if ( ! pods || ! selector ) {
40
36
return ;
41
37
}
42
- return _ . filter ( pods , function ( pod ) {
43
- return selector . matches ( pod ) ;
44
- } ) ;
38
+ return selector . select ( pods ) ;
45
39
} ;
46
40
47
41
var resourceGroupVersion = {
@@ -55,32 +49,38 @@ angular
55
49
. then ( _ . spread ( function ( project , context ) {
56
50
projectContext = context ;
57
51
58
- watches . push ( DataService . watchObject ( resourceGroupVersion , $scope . statefulSetName , context , function ( statefulSet ) {
59
- console . log ( 'statefulSet' , statefulSet ) ;
60
- angular . extend ( $scope , {
61
- resourceGroupVersion : resourceGroupVersion ,
62
- statefulSet : statefulSet ,
63
- loaded : true ,
64
- projectContext : context
65
- // TODO: support scaling
66
- // scale: function() {},
67
- // isScalable: function() { return true; }
52
+ DataService
53
+ . get ( resourceGroupVersion , $scope . statefulSetName , context )
54
+ . then ( function ( statefulSet ) {
55
+ angular . extend ( $scope , {
56
+ statefulSet : statefulSet ,
57
+ projectContext : context ,
58
+ loaded : true
59
+ } ) ;
60
+ watches . push ( DataService . watchObject ( resourceGroupVersion , $scope . statefulSetName , context , function ( statefulSet ) {
61
+ angular . extend ( $scope , {
62
+ resourceGroupVersion : resourceGroupVersion ,
63
+ statefulSet : statefulSet
64
+ // TODO: support scaling
65
+ // scale: function() {},
66
+ // isScalable: function() { return true; }
67
+ } ) ;
68
+ var pods ;
69
+ var selector ;
70
+ $scope . $watch ( 'statefulSet.spec.selector' , function ( ) {
71
+ selector = new LabelSelector ( $scope . statefulSet . spec . selector ) ;
72
+ $scope . podsForStatefulSet = updatePods ( pods , selector ) ;
73
+ } , true ) ;
74
+ // TODO: this is leaky. every time the outer watch updates,
75
+ // we are creating a new watch on pods:
76
+ // - console.log('# of watches?', watches.length); // steadily increments
77
+ // we have this in a lot of places...
78
+ watches . push ( DataService . watch ( 'pods' , context , function ( podData ) {
79
+ pods = podData . by ( 'metadata.name' ) ;
80
+ $scope . podsForStatefulSet = updatePods ( pods , selector ) ;
81
+ } ) ) ;
82
+ } ) ) ;
68
83
} ) ;
69
- var pods ;
70
- var selector ;
71
- $scope . $watch ( 'statefulSet.spec.selector' , function ( ) {
72
- selector = new LabelSelector ( $scope . statefulSet . spec . selector ) ;
73
- $scope . podsForStatefulSet = updatePods ( pods , selector ) ;
74
- } , true ) ;
75
- // TODO: this is leaky. every time the outer watch updates,
76
- // we are creating a new watch on pods:
77
- // - console.log('# of watches?', watches.length); // steadily increments
78
- // we have this in a lot of places...
79
- watches . push ( DataService . watch ( 'pods' , context , function ( podData ) {
80
- pods = podData . by ( 'metadata.name' ) ;
81
- $scope . podsForStatefulSet = updatePods ( pods , selector ) ;
82
- } ) ) ;
83
- } ) ) ;
84
84
} ) ) ;
85
85
86
86
$scope . $on ( '$destroy' , function ( ) {
0 commit comments