mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 23:30:05 +02:00
feat(portal-data): scaling is now supported
This commit is contained in:
parent
123eafbb5c
commit
86b52a96f5
@ -393,16 +393,15 @@ module.exports = class Data extends EventEmitter {
|
||||
};
|
||||
|
||||
const options = {
|
||||
provisionName: deployment_group.name,
|
||||
projectName: deployment_group.name,
|
||||
services: {},
|
||||
manifest: manifest.raw
|
||||
};
|
||||
options.services[service.name] = replicas;
|
||||
this._docker.scale(options, (err, res) => {
|
||||
this._docker.scale(options, (err) => {
|
||||
if (err) {
|
||||
return cb(err);
|
||||
}
|
||||
|
||||
finish();
|
||||
});
|
||||
}
|
||||
|
@ -1,2 +1,2 @@
|
||||
hello:
|
||||
image: hello-world:latest
|
||||
traefik:
|
||||
image: traefik:latest
|
||||
|
@ -696,9 +696,10 @@ describe.skip('scale()', () => {
|
||||
setTimeout(() => {
|
||||
data.getDeploymentGroup({ id: deploymentGroup.id }, (err, deploymentGroup) => {
|
||||
expect(err).to.not.exist();
|
||||
data.scale({ id: deploymentGroup.services[0].id, replicas: 2 }, (err, version) => {
|
||||
data.scale({ id: deploymentGroup.services[0].id, replicas: 3 }, (err, version) => {
|
||||
expect(err).to.not.exist();
|
||||
expect(version).to.exist();
|
||||
expect(version.scales[0].replicas).to.equal(3);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user