-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] PetSets / StatefulSets #1088
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
'use strict'; | ||
|
||
angular | ||
.module('openshiftConsole') | ||
.controller('StatefulSetController', function( | ||
$filter, | ||
$scope, | ||
$routeParams, | ||
AlertMessageService, | ||
BreadcrumbsService, | ||
DataService, | ||
ProjectsService) { | ||
|
||
$scope.projectName = $routeParams.project; | ||
$scope.statefulSetName = $routeParams.statefulset; | ||
$scope.forms = {}; | ||
$scope.alerts = {}; | ||
$scope.breadcrumbs = BreadcrumbsService.getBreadcrumbs({ | ||
name: $scope.statefulSetName, | ||
kind: 'statefulSet', | ||
namespace: $routeParams.project | ||
}); | ||
$scope.emptyMessage = "Loading..."; | ||
|
||
var altTextForValueFrom = $filter('altTextForValueFrom'); | ||
var updateEnvVars = function(statefulSet) { | ||
_.each(statefulSet.spec.template.spec.containers, function(container) { | ||
_.each(container.env, altTextForValueFrom); | ||
}); | ||
return statefulSet; | ||
}; | ||
|
||
AlertMessageService.getAlerts().forEach(function(alert) { | ||
$scope.alerts[alert.name] = alert.data; | ||
}); | ||
AlertMessageService.clearAlerts(); | ||
|
||
var watches = []; | ||
var projectContext; | ||
|
||
var updatePods = function(pods, selector) { | ||
if (!pods || !selector) { | ||
return; | ||
} | ||
return selector.select(pods); | ||
}; | ||
|
||
var resourceGroupVersion = { | ||
resource: 'statefulsets', | ||
group: 'apps', | ||
version: 'v1beta1' | ||
}; | ||
|
||
ProjectsService | ||
.get($routeParams.project) | ||
.then(_.spread(function(project, context) { | ||
projectContext = context; | ||
|
||
DataService | ||
.get(resourceGroupVersion, $scope.statefulSetName, context) | ||
.then(function(statefulSet) { | ||
|
||
angular.extend($scope, { | ||
statefulSet: updateEnvVars(statefulSet), | ||
project: project, | ||
projectContext: context, | ||
loaded: true, | ||
// TODO: support scaling(?). currently no scale subresource. | ||
isScalable: function() { | ||
return false; | ||
}, | ||
scale: function() {} | ||
}); | ||
|
||
watches.push(DataService.watchObject(resourceGroupVersion, $scope.statefulSetName, context, function(statefulSet) { | ||
angular.extend($scope, { | ||
resourceGroupVersion: resourceGroupVersion, | ||
statefulSet: updateEnvVars(statefulSet) | ||
}); | ||
})); | ||
|
||
var pods; | ||
var selector; | ||
$scope.$watch('statefulSet.spec.selector', function() { | ||
selector = new LabelSelector($scope.statefulSet.spec.selector); | ||
$scope.podsForStatefulSet = updatePods(pods, selector); | ||
}, true); | ||
|
||
watches.push(DataService.watch('pods', context, function(podData) { | ||
pods = podData.by('metadata.name'); | ||
$scope.podsForStatefulSet = updatePods(pods, selector); | ||
})); | ||
|
||
}); | ||
})); | ||
|
||
$scope.$on('$destroy', function(){ | ||
DataService.unwatchAll(watches); | ||
}); | ||
|
||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
'use strict'; | ||
|
||
angular.module('openshiftConsole') | ||
.controller('StatefulSetsController', function($scope, $routeParams, AlertMessageService, DataService, ProjectsService) { | ||
$scope.projectName = $routeParams.project; | ||
$scope.alerts = $scope.alerts || {}; | ||
$scope.emptyMessage = "Loading..."; | ||
|
||
// get and clear any alerts | ||
AlertMessageService.getAlerts().forEach(function(alert) { | ||
$scope.alerts[alert.name] = alert.data; | ||
}); | ||
AlertMessageService.clearAlerts(); | ||
|
||
var watches = []; | ||
ProjectsService | ||
.get($routeParams.project) | ||
.then(_.spread(function(project, context) { | ||
$scope.project = project; | ||
|
||
watches.push(DataService.watch({ | ||
resource: 'statefulsets', | ||
group: 'apps', | ||
version: 'v1beta1' | ||
}, context, function(statefulSets) { | ||
angular.extend($scope, { | ||
loaded: true, | ||
statefulSets: statefulSets.by('metadata.name') | ||
}); | ||
})); | ||
|
||
$scope.$on('$destroy', function(){ | ||
DataService.unwatchAll(watches); | ||
}); | ||
|
||
})); | ||
}); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<div class="pod-template-block"> | ||
<div | ||
ng-repeat="template in templates" | ||
class="pod-template"> | ||
<div class="component-label">Storage claim: {{template.metadata.name}}</div> | ||
|
||
<div row class="pod-template-image icon-row"> | ||
<div> | ||
<span class="fa fa-lock" aria-hidden="true"></span> | ||
</div> | ||
<div flex class="word-break"> | ||
<span class="pod-template-key">Access Modes:</span> | ||
<span ng-repeat="mode in template.spec.accessModes"> | ||
{{mode | sentenceCase }}<span ng-if="!$last">, </span> | ||
</span> | ||
</div> | ||
</div> | ||
|
||
<div row class="pod-template-image icon-row"> | ||
<div> | ||
<span class="fa fa-database" aria-hidden="true"></span> | ||
</div> | ||
<div flex class="word-break"> | ||
<span class="pod-template-key">Capacity:</span> | ||
<span> | ||
{{template.spec.resources.requests.storage}} | ||
</span> | ||
</div> | ||
</div> | ||
|
||
<div | ||
row class="pod-template-image icon-row" | ||
ng-if="template.spec.selector.matchLabels"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok looks like this is using the new type of selectors, we can do a follow-up PR tomorrow, but we should handle matchExpressions as well, can you make a TODO for that for tomorrow in your notebook :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @benjaminapetersen We have a <selector selector="template.spec.selector"></selector> There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh nice, I'll update this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmmm. So if I swap that in I get this: @sg00dwin I think the css in the pod-template targeting .icon-row div:first-child {
text-align: center;
width: 30px;
} Pinging you before I update as this is used in a bunch of places. |
||
<div> | ||
<span class="fa fa-tag" aria-hidden="true"></span> | ||
</div> | ||
<div flex class="word-break"> | ||
<span class="pod-template-key">Selector:</span> | ||
<span ng-repeat="(key, value) in template.spec.selector.matchLabels"> | ||
{{key}}={{value}}<span ng-if="!$last">, </span> | ||
</span> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
capital S on Set in the param
:statefulSet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done, though the annoying thing about camelCase here is that it doesn't work in the controller when using
$routeParams
. It will still be$routeParams.statefulset
:(