-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from ImMin5/master
Fix Dockerfile for SpaceONE 2.0
- Loading branch information
Showing
13 changed files
with
301 additions
and
246 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1 @@ | ||
spaceone-api | ||
mongoengine | ||
redis | ||
python-consul |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,21 +17,15 @@ | |
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='spaceone-plugin', | ||
version=os.environ.get('PACKAGE_VERSION'), | ||
description='SpaceONE plugin service', | ||
long_description='', | ||
url='https://www.spaceone.dev/', | ||
author='MEGAZONE SpaceONE Team', | ||
author_email='[email protected]', | ||
license='Apache License 2.0', | ||
name="spaceone-plugin", | ||
version=os.environ.get("PACKAGE_VERSION"), | ||
description="SpaceONE plugin service", | ||
long_description="", | ||
url="https://www.spaceone.dev/", | ||
author="MEGAZONE SpaceONE Team", | ||
author_email="[email protected]", | ||
license="Apache License 2.0", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'spaceone-core', | ||
'spaceone-api', | ||
'mongoengine', | ||
'redis', | ||
'python-consul' | ||
], | ||
install_requires=["spaceone-api"], | ||
zip_safe=False, | ||
) |
Empty file.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from spaceone.core.pygrpc.server import GRPCServer | ||
from spaceone.plugin.interface.grpc.plugin import Plugin | ||
from spaceone.plugin.interface.grpc.supervisor import Supervisor | ||
|
||
__all__ = ["app"] | ||
|
||
app = GRPCServer() | ||
app.add_service(Plugin) | ||
app.add_service(Supervisor) |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.