Skip to content

Commit

Permalink
Bump 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche committed Apr 28, 2022
1 parent 0aad50b commit e878522
Show file tree
Hide file tree
Showing 49 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Currently it can collect [AWS](plugins/aws/), [Google Cloud](plugins/gcp/), [VMW

## Docker-based quick start

Docker images are hosted via GitHub container repository: `somecr.io/someengineering/resoto:2.0.0`
Docker images are hosted via GitHub container repository: `somecr.io/someengineering/resoto:2.1.0`

In this quick start guide, we’re showing you three things, how to:

Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ services:
- --web.console.libraries=/usr/share/prometheus/console_libraries
- --web.console.templates=/usr/share/prometheus/consoles
resotocore:
image: somecr.io/someengineering/resotocore:edge
image: somecr.io/someengineering/resotocore:2.1
depends_on:
- graphdb
ports:
Expand All @@ -43,7 +43,7 @@ services:
restart: always
stop_grace_period: 2m
resotoworker:
image: somecr.io/someengineering/resotoworker:edge
image: somecr.io/someengineering/resotoworker:2.1
depends_on:
- resotocore
ports:
Expand All @@ -54,7 +54,7 @@ services:
restart: always
stop_grace_period: 2m
resotometrics:
image: somecr.io/someengineering/resotometrics:edge
image: somecr.io/someengineering/resotometrics:2.1
depends_on:
- resotocore
ports:
Expand All @@ -67,7 +67,7 @@ services:
resotoshell:
# This container is not started by default. To start a shell use this command:
# $> docker-compose run resotoshell
image: somecr.io/someengineering/resotoshell:edge
image: somecr.io/someengineering/resotoshell:2.1
profiles:
- do-not-start
depends_on:
Expand All @@ -85,7 +85,7 @@ services:
#
# Or to do it in one step
# $> docker exec -it $(docker ps -f name=resoto_resotoshell-server_1 --format "{{.ID}}") resh
image: somecr.io/someengineering/resotoshell:edge
image: somecr.io/someengineering/resotoshell:2.1
depends_on:
- resotocore
environment:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.2.0
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.0.0"
appVersion: "2.1.0"
2 changes: 1 addition & 1 deletion plugins/aws/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resotolib==2.1.0a0
resotolib==2.1.0
retrying==1.3.3
SQLAlchemy==1.4.29
boto3==1.20.32
Expand Down
2 changes: 1 addition & 1 deletion plugins/aws/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-aws",
version="2.1.0a0",
version="2.1.0",
description="Resoto AWS Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
4 changes: 2 additions & 2 deletions plugins/cleanup_aws_alarms/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resotolib==2.1.0a0
resoto-plugin-aws==2.1.0a0
resotolib==2.1.0
resoto-plugin-aws==2.1.0
PyYAML==6.0
2 changes: 1 addition & 1 deletion plugins/cleanup_aws_alarms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-cleanup_aws_alarms",
version="2.1.0a0",
version="2.1.0",
description="AWS Cloudwatch Alarms Cleaner Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
4 changes: 2 additions & 2 deletions plugins/cleanup_aws_loadbalancers/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resoto-plugin-aws==2.1.0a0
resotolib==2.1.0
resoto-plugin-aws==2.1.0
2 changes: 1 addition & 1 deletion plugins/cleanup_aws_loadbalancers/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-cleanup_aws_loadbalancers",
version="2.1.0a0",
version="2.1.0",
description="AWS Loadbalancers Cleaner Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
4 changes: 2 additions & 2 deletions plugins/cleanup_aws_vpcs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resotolib==2.1.0a0
resoto-plugin-aws==2.1.0a0
resotolib==2.1.0
resoto-plugin-aws==2.1.0
PyYAML==6.0
2 changes: 1 addition & 1 deletion plugins/cleanup_aws_vpcs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-cleanup_aws_vpcs",
version="2.1.0a0",
version="2.1.0",
description="AWS VPC Cleaner Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/cleanup_expired/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resotolib==2.1.0a0
resotolib==2.1.0
2 changes: 1 addition & 1 deletion plugins/cleanup_expired/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-cleanup_expired",
version="2.1.0a0",
version="2.1.0",
description="Resoto Expired Resource Cleanup Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/cleanup_untagged/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
PyYAML==6.0
2 changes: 1 addition & 1 deletion plugins/cleanup_untagged/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-cleanup_untagged",
version="2.1.0a0",
version="2.1.0",
description="Resoto Cleanup Untagged Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/cleanup_volumes/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resotolib==2.1.0a0
resotolib==2.1.0
2 changes: 1 addition & 1 deletion plugins/cleanup_volumes/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-cleanup_volumes",
version="2.1.0a0",
version="2.1.0",
description="Volume Cleaner Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/digitalocean/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resotolib==2.1.0a0
resotolib==2.1.0
boto3>=1.20.32
requests>=2.27.1
botocore>=1.23.32
Expand Down
2 changes: 1 addition & 1 deletion plugins/digitalocean/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def read(fname):

setup(
name="resoto-plugin-digitalocean",
version="2.1.0a0",
version="2.1.0",
description="Resoto DigitalOcean Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/example_collector/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resotolib==2.1.0a0
resotolib==2.1.0
2 changes: 1 addition & 1 deletion plugins/example_collector/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-example_collector",
version="2.1.0a0",
version="2.1.0",
description="Resoto Example Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/gcp/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resotolib==2.1.0a0
resotolib==2.1.0
google-api-python-client==2.34.0
oauth2client==4.1.3
retrying==1.3.3
Expand Down
2 changes: 1 addition & 1 deletion plugins/gcp/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-gcp",
version="2.1.0a0",
version="2.1.0",
description="Resoto GCP Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/github/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
PyGithub==1.55
2 changes: 1 addition & 1 deletion plugins/github/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-github",
version="2.1.0a0",
version="2.1.0",
description="Resoto Github Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/k8s/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
kubernetes==21.7.0
2 changes: 1 addition & 1 deletion plugins/k8s/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-k8s",
version="2.1.0a0",
version="2.1.0",
description="Resoto Kubernetes Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/onelogin/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
onelogin==2.0.2
2 changes: 1 addition & 1 deletion plugins/onelogin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-onelogin",
version="2.1.0a0",
version="2.1.0",
description="Resoto OneLogin Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/onprem/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
paramiko==2.10.1
2 changes: 1 addition & 1 deletion plugins/onprem/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-onprem",
version="2.1.0a0",
version="2.1.0",
description="Resoto On-Premises Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/protector/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
PyYAML==6.0
2 changes: 1 addition & 1 deletion plugins/protector/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-protector",
version="2.1.0a0",
version="2.1.0",
description="Resoto Protector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/slack/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
resotolib==2.1.0a0
resotolib==2.1.0
slack-sdk==3.13.0
retrying==1.3.3
2 changes: 1 addition & 1 deletion plugins/slack/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-slack",
version="2.1.0a0",
version="2.1.0",
description="Resoto Slack Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/tagvalidator/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
PyYAML==6.0
2 changes: 1 addition & 1 deletion plugins/tagvalidator/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-tagvalidator",
version="2.1.0a0",
version="2.1.0",
description="Resoto Tag Validator Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion plugins/vsphere/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
pyvmomi==7.0.3
2 changes: 1 addition & 1 deletion plugins/vsphere/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(fname):

setup(
name="resoto-plugin-vsphere",
version="2.1.0a0",
version="2.1.0",
description="Resoto VSphere Collector Plugin",
license="Apache 2.0",
packages=find_packages(),
Expand Down
2 changes: 1 addition & 1 deletion resotocore/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ aiostream==0.4.4
tzlocal==4.1
frozendict==2.1.3 # 2.2.0 can not be marshalled as json any longer
PyYAML==6.0
resotolib==2.1.0a0
resotolib==2.1.0
jq==1.2.2
posthog==1.4.5
# available in python 3.8
Expand Down
2 changes: 1 addition & 1 deletion resotocore/resotocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
__author__ = "Some Engineering Inc."
__license__ = "Apache 2.0"
__copyright__ = "Copyright © 2022 Some Engineering Inc."
__version__ = "2.1.0a0"
__version__ = "2.1.0"


def version() -> str:
Expand Down
2 changes: 1 addition & 1 deletion resotocore/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

setup(
name="resotocore",
version="2.1.0a0",
version="2.1.0",
description="Keeps all the things.",
python_requires=">=3.5",
classifiers=["Programming Language :: Python :: 3"],
Expand Down
2 changes: 1 addition & 1 deletion resotolib/resotolib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
__author__ = "Some Engineering Inc."
__license__ = "Apache 2.0"
__copyright__ = "Copyright © 2022 Some Engineering Inc."
__version__ = "2.1.0a0"
__version__ = "2.1.0"
2 changes: 1 addition & 1 deletion resotometrics/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
resotolib==2.1.0a0
resotolib==2.1.0
PyYAML==6.0
2 changes: 1 addition & 1 deletion resotometrics/resotometrics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
__author__ = "Some Engineering Inc."
__license__ = "Apache 2.0"
__copyright__ = "Copyright © 2022 Some Engineering Inc."
__version__ = "2.1.0a0"
__version__ = "2.1.0"
2 changes: 1 addition & 1 deletion resotoshell/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
prompt-toolkit==3.0.28
requests-toolbelt==0.9.1
rich==12.0.1
resotolib==2.1.0a0
resotolib==2.1.0
resotoclient==0.1.5
2 changes: 1 addition & 1 deletion resotoshell/resotoshell/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
__author__ = "Some Engineering Inc."
__license__ = "Apache 2.0"
__copyright__ = "Copyright © 2022 Some Engineering Inc."
__version__ = "2.1.0a0"
__version__ = "2.1.0"
2 changes: 1 addition & 1 deletion resotoworker/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
resotolib==2.1.0a0
resotolib==2.1.0
2 changes: 1 addition & 1 deletion resotoworker/resotoworker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
__author__ = "Some Engineering Inc."
__license__ = "Apache 2.0"
__copyright__ = "Copyright © 2022 Some Engineering Inc."
__version__ = "2.1.0a0"
__version__ = "2.1.0"

0 comments on commit e878522

Please sign in to comment.