-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start adding Orchestration API #105
base: master
Are you sure you want to change the base?
Conversation
Build failed.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great start!
@@ -0,0 +1,58 @@ | |||
// Copyright 2018 Dmitry Tantsur <divius.inside@gmail.com> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Put your copyright here or just skip the copyright completely.
@@ -0,0 +1,190 @@ | |||
// Copyright 2017 Dmitry Tantsur <divius.inside@gmail.com> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
similar re copyrights
/// Start creating a server. | ||
pub(crate) fn new(session: Rc<Session>, name: String) -> NewStack { | ||
NewServer { | ||
// session, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, you surely need it on line 60
recheck |
Build failed.
|
Hi, I need the Orchestration API feature and I can probably implement it. |
I'm starting to add the OpenStack Orchestration (Heat) API. It's far from finished (I need to add src/orchestration/api.rs before it even compiles) but I wanted to open a PR to allow early feedback/others to contribute.