Skip to content

Commit

Permalink
Merge pull request #39 from reactiveops/sudermanjr/fix-38
Browse files Browse the repository at this point in the history
Sudermanjr/fix 38
  • Loading branch information
Andrew Suderman authored Jan 8, 2019
2 parents 0e0d91c + 1bdd1ed commit bbbe411
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ 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).

## Unreleased
## [0.10.2]

### Fixed
- fixing error were value-strings from the course where not being set as set-string on the command line
- improved output when a desired environment variable is not set
- no longer adding the helm_args from course.yml twice

## [0.10.1]

Expand Down
1 change: 0 additions & 1 deletion reckoner/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ def install(self, namespace=None, context=None):
if self.context is not None:
self.args.append('--kube-context={}'.format(self.context))
self.args.extend(self.debug_args)
self.args.extend(self.helm_args)
if self.version:
self.args.append('--version={}'.format(self.version))
for file in self.files:
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.1'
__version__ = '0.10.2'
__author__ = 'ReactiveOps, Inc.'
6 changes: 0 additions & 6 deletions tests/test_reckoner.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,6 @@ def test_chart_install(self):
#'--namespace={}'.format(chart.namespace),
chart.release_name,
chart.chart_path,

]
)
if chart.name == test_environ_var_chart:
Expand All @@ -376,7 +375,6 @@ def test_chart_install(self):
chart.release_name,
chart.chart_path,
'--namespace={}'.format(chart.namespace),
'--recreate-pods',
'--set={}={}'.format(test_environ_var_name, test_environ_var)]
)
if chart.release_name == test_values_strings_chart:
Expand All @@ -390,15 +388,11 @@ def test_chart_install(self):
chart.release_name,
chart.chart_path,
'--namespace={}'.format(chart.namespace),
'--recreate-pods',
'--version=0.1.0',
'--set-string=string=string',
'--set-string=integer=10',
'--set-string=boolean=True'
]



)


Expand Down

0 comments on commit bbbe411

Please sign in to comment.