|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +angular |
| 4 | + .module('openshiftConsole') |
| 5 | + .controller('StatefulSetController', function( |
| 6 | + $filter, |
| 7 | + $scope, |
| 8 | + $routeParams, |
| 9 | + AlertMessageService, |
| 10 | + BreadcrumbsService, |
| 11 | + DataService, |
| 12 | + ProjectsService) { |
| 13 | + |
| 14 | + $scope.projectName = $routeParams.project; |
| 15 | + $scope.statefulSetName = $routeParams.statefulset; |
| 16 | + $scope.forms = {}; |
| 17 | + $scope.alerts = {}; |
| 18 | + $scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({ |
| 19 | + name: $scope.statefulSetName, |
| 20 | + kind: 'statefulSet', |
| 21 | + namespace: $routeParams.project |
| 22 | + }); |
| 23 | + $scope.emptyMessage = "Loading..."; |
| 24 | + |
| 25 | + var altTextForValueFrom = $filter('altTextForValueFrom'); |
| 26 | + var updateEnvVars = function(statefulSet) { |
| 27 | + _.each(statefulSet.spec.template.spec.containers, function(container) { |
| 28 | + _.each(container.env, altTextForValueFrom); |
| 29 | + }); |
| 30 | + return statefulSet; |
| 31 | + }; |
| 32 | + |
| 33 | + AlertMessageService.getAlerts().forEach(function(alert) { |
| 34 | + $scope.alerts[alert.name] = alert.data; |
| 35 | + }); |
| 36 | + AlertMessageService.clearAlerts(); |
| 37 | + |
| 38 | + var watches = []; |
| 39 | + var projectContext; |
| 40 | + |
| 41 | + var updatePods = function(pods, selector) { |
| 42 | + if (!pods || !selector) { |
| 43 | + return; |
| 44 | + } |
| 45 | + return selector.select(pods); |
| 46 | + }; |
| 47 | + |
| 48 | + var resourceGroupVersion = { |
| 49 | + resource: 'statefulsets', |
| 50 | + group: 'apps', |
| 51 | + version: 'v1beta1' |
| 52 | + }; |
| 53 | + |
| 54 | + ProjectsService |
| 55 | + .get($routeParams.project) |
| 56 | + .then(_.spread(function(project, context) { |
| 57 | + projectContext = context; |
| 58 | + |
| 59 | + DataService |
| 60 | + .get(resourceGroupVersion, $scope.statefulSetName, context) |
| 61 | + .then(function(statefulSet) { |
| 62 | + |
| 63 | + angular.extend($scope, { |
| 64 | + statefulSet: updateEnvVars(statefulSet), |
| 65 | + project: project, |
| 66 | + projectContext: context, |
| 67 | + loaded: true, |
| 68 | + // TODO: support scaling(?). currently no scale subresource. |
| 69 | + isScalable: function() { |
| 70 | + return false; |
| 71 | + }, |
| 72 | + scale: function() {} |
| 73 | + }); |
| 74 | + |
| 75 | + watches.push(DataService.watchObject(resourceGroupVersion, $scope.statefulSetName, context, function(statefulSet) { |
| 76 | + angular.extend($scope, { |
| 77 | + resourceGroupVersion: resourceGroupVersion, |
| 78 | + statefulSet: updateEnvVars(statefulSet) |
| 79 | + }); |
| 80 | + })); |
| 81 | + |
| 82 | + var pods; |
| 83 | + var selector; |
| 84 | + $scope.$watch('statefulSet.spec.selector', function() { |
| 85 | + selector = new LabelSelector($scope.statefulSet.spec.selector); |
| 86 | + $scope.podsForStatefulSet = updatePods(pods, selector); |
| 87 | + }, true); |
| 88 | + |
| 89 | + watches.push(DataService.watch('pods', context, function(podData) { |
| 90 | + pods = podData.by('metadata.name'); |
| 91 | + $scope.podsForStatefulSet = updatePods(pods, selector); |
| 92 | + })); |
| 93 | + |
| 94 | + }); |
| 95 | + })); |
| 96 | + |
| 97 | + $scope.$on('$destroy', function(){ |
| 98 | + DataService.unwatchAll(watches); |
| 99 | + }); |
| 100 | + |
| 101 | + }); |
0 commit comments