Skip to content

Commit

Permalink
Added dependency updates (#91)
Browse files Browse the repository at this point in the history
Updated dependencies for app to be newer versions
  • Loading branch information
endzyme committed Apr 15, 2019
1 parent 60cc48f commit 6989e3b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
docker exec kube-access sh -c "helm list --output json | jq -e '.Releases[]|select(.Name == \"go-harbor\")|.Status == \"DEPLOYED\"'"
docker exec kube-access sh -c "helm list --output json | jq -e '.Releases[]|select(.Name == \"redis-env\")|.Status == \"DEPLOYED\"'"
docker exec kube-access sh -c "helm list --output json | jq -e '[.Releases[].Name] | contains([\"redis-hook\"])|not'"
docker exec kube-access reckoner plot --only nginx-ingress /app/reckoner/end_to_end_testing/basic.yml
docker exec kube-access sh -c "helm list --output json | jq -e '.Releases[]|select(.Name == \"nginx-ingress\")|.Revision == 2'"
end-to-end-3.7:
docker:
# NOTE: This image isn't actually used since we're mostly working in docker
Expand Down Expand Up @@ -109,6 +111,8 @@ jobs:
docker exec kube-access sh -c "helm list --output json | jq -e '.Releases[]|select(.Name == \"go-harbor\")|.Status == \"DEPLOYED\"'"
docker exec kube-access sh -c "helm list --output json | jq -e '.Releases[]|select(.Name == \"redis-env\")|.Status == \"DEPLOYED\"'"
docker exec kube-access sh -c "helm list --output json | jq -e '[.Releases[].Name] | contains([\"redis-hook\"])|not'"
docker exec kube-access reckoner plot --only nginx-ingress /app/reckoner/end_to_end_testing/basic.yml
docker exec kube-access sh -c "helm list --output json | jq -e '.Releases[]|select(.Name == \"nginx-ingress\")|.Revision == 2'"
build-2.7:
docker:
- image: circleci/python:2.7
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Changes
- Added fix for interpolated variables in kube specs (see #82)
- Adjusted help for plot (--heading / --only also accepts -o now)
- Updated underlying dependencies (click, semver, GitPython)

## [1.1.1]

Expand Down
2 changes: 1 addition & 1 deletion reckoner/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def cli(ctx, log_level, *args, **kwargs):
@click.option("--dry-run", is_flag=True, help='Pass --dry-run to helm so no action is taken. Implies --debug and '
'skips hooks.')
@click.option("--debug", is_flag=True, help='DEPRECATED - use --dry-run instead, or pass to --helm-args')
@click.option("--heading", "--only", metavar="<chart>", help='Only run a specific chart by name', multiple=True)
@click.option("--only", "--heading", "-o", "only", metavar="<chart>", help='Only run a specific chart by name', multiple=True)
@click.option("--helm-args", help='Passes the following arg on to helm, can be used more than once. WARNING: Setting '
'this will completely override any helm_args in the course. Also cannot be used for '
'configuring how helm connects to tiller.', multiple=True)
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
license='Apache2.0',
packages=find_packages(exclude=('tests', '*.tests')),
install_requires=[
"click==6.7",
"GitPython==2.1.3",
"click==7.0",
"GitPython>=2.1.11",
"oyaml>=0.8",
"coloredlogs==9.0",
"semver==2.8.0",
"coloredlogs>=9.0",
"semver>=2.8.1",
"PyYAML>=5.1",
],
entry_points=''' #for click integration
Expand Down

0 comments on commit 6989e3b

Please sign in to comment.