Skip to content

Commit

Permalink
Merge pull request #46 from reactiveops/sudermanjr/fix-43
Browse files Browse the repository at this point in the history
Fixes #43.  Files is a list not a dict.
  • Loading branch information
Andrew Suderman authored Jan 9, 2019
2 parents f098147 + 1f5f127 commit 47e47f2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.10.3]

### Fixed
- Issue preventing values files from working. #43

## [0.10.2]

### Fixed
Expand Down
5 changes: 3 additions & 2 deletions reckoner/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ def name(self):
@property
def files(self):
""" List of values files from the course chart """
return dict(self._chart.get('files', []))
logging.debug(self)
return list(self._chart.get('files', []))

@property
def namespace(self):
Expand Down Expand Up @@ -229,7 +230,7 @@ def install(self, namespace=None, context=None):
logging.info(r.stdout)
except HelmClientException, e:
logging.error(e)
raise e
return

self.post_install_hook()

Expand Down
2 changes: 1 addition & 1 deletion reckoner/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.10.2'
__version__ = '0.10.3'
__author__ = 'ReactiveOps, Inc.'

0 comments on commit 47e47f2

Please sign in to comment.