Skip to content

Commit e51f986

Browse files
committed
Ensure that the swarm nodes in the status report are always expanded
1 parent df58117 commit e51f986

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1+
## 3.1.0 - 2018-04-17
2+
3+
## Improved
4+
5+
- The plugin status report will now render all swarm nodes expanded to make it easier to search for things.
6+
17
## 3.0.0 - 2018-03-08
28

39
### Added
10+
411
- Support for agent status report and plugin status report.
512
- Plugin now uses's job identifier to tag the docker services. This allows the plugin to decide to which agent it should assign work.
613

7-
#### Know issues
14+
#### Known issues
15+
816
- Logs are not shown on agent status report[(#68)](https://github.com/gocd-contrib/docker-swarm-elastic-agents/issues/68).
917
- Better message when a container is not created for the job or docker service is killed[(#71)](https://github.com/gocd-contrib/docker-swarm-elastic-agents/issues/71).
1018

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ plugins {
2121
apply plugin: 'java'
2222
apply from: 'plugin-common.gradle'
2323

24-
project.ext.pluginVersion = '3.0.0'
24+
project.ext.pluginVersion = '3.0.1'
2525
project.ext.fullVersion = project.distVersion ? "${project.pluginVersion}-${project.distVersion}" : project.pluginVersion
2626

2727
group = 'cd.go.contrib'

src/main/resources/status-report.template.ftlh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
<#assign ngModel = "node${nodeIndex}">
185185
<div class="node">
186186
<div class="node-header row" ng-click="${ngModel} = !${ngModel}" ngModel="${ngModel}"
187-
ng-value="false" ng-init="${ngModel} = ${(nodeIndex == 0)?then('true','false')}">
187+
ng-value="false" ng-init="${ngModel} = true">
188188
<div class="columns medium-10 left">
189189
<i class="fa fa-desktop" aria-hidden="true"></i>
190190
<dl class="properties inline">

0 commit comments

Comments
 (0)