-
Notifications
You must be signed in to change notification settings - Fork 614
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
add scale flag for compose up #602
Conversation
Thanks, could you also update |
91226d2
to
4777668
Compare
4777668
to
8adba9a
Compare
@@ -50,7 +51,7 @@ type Options struct { | |||
DebugPrintFull bool // full debug print, may leak secret env var to logs | |||
} | |||
|
|||
func New(o Options) (*Composer, error) { | |||
func New(o Options, client *containerd.Client) (*Composer, error) { |
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.
Can we put client
to Options
struct?
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.
I prefer to separate them, they don’t seem to be affiliation.
8adba9a
to
e458d07
Compare
Signed-off-by: ye.sijun <junnplus@gmail.com>
e458d07
to
7cccf41
Compare
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.
Thanks
Signed-off-by: ye.sijun junnplus@gmail.com
Add scale flag for compose up.