Skip to content
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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ <h1>JavaScript Required</h1>
<script src="scripts/controllers/deployment.js"></script>
<script src="scripts/controllers/deploymentConfig.js"></script>
<script src="scripts/controllers/replicaSet.js"></script>
<script src="scripts/controllers/statefulSets.js"></script>
<script src="scripts/controllers/statefulSet.js"></script>
<script src="scripts/controllers/services.js"></script>
<script src="scripts/controllers/service.js"></script>
<script src="scripts/controllers/secrets.js"></script>
Expand Down
10 changes: 10 additions & 0 deletions app/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,16 @@ angular
templateUrl: 'views/edit/deployment-config.html',
controller: 'EditDeploymentConfigController'
})
.when('/project/:project/browse/stateful-sets/', {
templateUrl: 'views/browse/stateful-sets.html',
controller: 'StatefulSetsController',
reloadOnSearch: false
})
.when('/project/:project/browse/stateful-sets/:statefulset', {
Copy link
Member

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

Copy link
Contributor Author

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 :(

templateUrl: 'views/browse/stateful-set.html',
controller: 'StatefulSetController',
reloadOnSearch: false
})
.when('/project/:project/browse/rs/:replicaSet', {
templateUrl: 'views/browse/replica-set.html',
resolve: {
Expand Down
8 changes: 8 additions & 0 deletions app/scripts/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ window.OPENSHIFT_CONSTANTS = {
"config-maps": "dev_guide/configmaps.html",
"secrets": "dev_guide/secrets.html",
"deployments": "dev_guide/deployments/how_deployments_work.html",
//"stateful-sets": "", // TODO: docs are in progress
"pods": "architecture/core_concepts/pods_and_services.html#pods",
"services": "architecture/core_concepts/pods_and_services.html#services",
"routes": "architecture/core_concepts/routes.html",
Expand Down Expand Up @@ -115,6 +116,13 @@ window.OPENSHIFT_CONSTANTS = {
"/browse/rc/"
]
},
{
label: "Stateful Sets",
href: "/browse/stateful-sets",
prefixes: [
"/browse/stateful-sets/"
]
},
{
label: "Pods",
href: "/browse/pods",
Expand Down
101 changes: 101 additions & 0 deletions app/scripts/controllers/statefulSet.js
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);
});

});
37 changes: 37 additions & 0 deletions app/scripts/controllers/statefulSets.js
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);
});

}));
});
9 changes: 9 additions & 0 deletions app/scripts/directives/resources.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,15 @@ angular.module('openshiftConsole')
templateUrl: 'views/_volumes.html'
};
})
.directive('volumeClaimTemplates', function() {
return {
restrict: 'E',
scope: {
templates: '=',
},
templateUrl: 'views/_volume-claim-templates.html'
};
})
.directive('environment', function() {
return {
restrict: 'E',
Expand Down
3 changes: 3 additions & 0 deletions app/scripts/filters/canI.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ angular
],
'projects': [
{group: '', resource: 'projects', verbs: ['delete', 'update']}
],
'statefulsets': [
{group: 'apps', resource: 'statefulsets', verbs: ['update', 'delete']}
]
};
return function(resource) {
Expand Down
4 changes: 4 additions & 0 deletions app/scripts/services/navigate.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,10 @@ angular.module("openshiftConsole")
.segmentCoded(name.substring(0, ind))
.segmentCoded(name.substring(ind + 1));
break;
case "StatefulSet":
url.segment("stateful-sets")
.segmentCoded(name);
break;
case "PersistentVolumeClaim":
case "Pod":
case "Route":
Expand Down
2 changes: 2 additions & 0 deletions app/styles/_components.less
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@
margin-bottom: 10px;
}

// TODO: also using this style for a volume claim template.
// consider a slightly more generic name that isn't limited to 'pod'
.pod-template-block {
+ .pod-template-block {
margin-top: 15px;
Expand Down
46 changes: 46 additions & 0 deletions app/views/_volume-claim-templates.html
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">
Copy link
Member

Choose a reason for hiding this comment

The 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 :)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@benjaminapetersen We have a selector directive now.

<selector selector="template.spec.selector"></selector>

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh nice, I'll update this

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmmm. So if I swap that in I get this:

screen shot 2017-01-19 at 10 37 55 am

@sg00dwin I think the css in the pod-template targeting div:first-child is probably what is doing it, probably too greedy:

.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>
Loading