fix(core): update

This commit is contained in:
Philipp Kunz 2019-09-13 14:40:38 +02:00
parent 546e139b46
commit 9767b8767a
6 changed files with 42 additions and 19 deletions

View File

@ -61,6 +61,7 @@ tap.test('should return a change Observable', async tools => {
tap.test('should create a secret', async () => {
const mySecret = await docker.DockerSecret.createSecret(testDockerHost, {
name: 'testSecret',
version: '1.0.3',
contentArg: `{ "hi": "wow"}`,
labels: {}
});
@ -89,15 +90,16 @@ tap.test('should create a service', async () => {
});
const testSecret = await docker.DockerSecret.createSecret(testDockerHost, {
name: 'serviceSecret',
version: '0.0.1',
labels: {},
contentArg: '{"hi": "wow"}'
});
const testService = await DockerService.createService(testDockerHost, {
Image: 'nginx:latest',
Labels: {
image: 'nginx:latest',
labels: {
'testlabel': 'hi'
},
Name: 'testService',
name: 'testService',
networks: [testNetwork],
networkAlias: 'testService',
secrets: [testSecret]

View File

@ -15,9 +15,15 @@ export class DockerImage {
public static async findImageByName(dockerHost: DockerHost, imageNameArg: string) {
const images = await this.getImages(dockerHost);
return images.find(image => {
return image.RepoTags.includes(imageNameArg);
const result = images.find(image => {
if (image.RepoTags) {
return image.RepoTags.includes(imageNameArg);
} else {
return false;
}
});
return result;
}
public static async createFromRegistry(

View File

@ -28,9 +28,13 @@ export class DockerSecret {
}
public static async createSecret(dockerHostArg: DockerHost, secretDescriptor: interfaces.ISecretCreationDescriptor) {
const labels: interfaces.TLabels = {
...secretDescriptor.labels,
version: secretDescriptor.version
};
const response = await dockerHostArg.request('POST', '/secrets/create', {
Name: secretDescriptor.name,
Labels: secretDescriptor.labels,
Labels: labels,
Data: plugins.smartstring.base64.encode(secretDescriptor.contentArg)
});
@ -46,9 +50,9 @@ export class DockerSecret {
Name: string;
Labels: interfaces.TLabels;
};
Version: {
public Version: {
Index:string;
}
};
public dockerHost: DockerHost;
constructor(dockerHostArg: DockerHost) {
@ -70,4 +74,10 @@ export class DockerSecret {
public async remove () {
await this.dockerHost.request('DELETE', `/secrets/${this.ID}`);
}
// get things
public getVersion() {
return this.Spec.Labels.version;
}
}

View File

@ -39,14 +39,18 @@ export class DockerService {
// lets get the image
plugins.smartlog.defaultLogger.log(
'info',
`downloading image for service ${serviceCreationDescriptor.Name}`
`downloading image for service ${serviceCreationDescriptor.name}`
);
const serviceImage = await DockerImage.createFromRegistry(dockerHost, {
imageUrl: serviceCreationDescriptor.Image
imageUrl: serviceCreationDescriptor.image
});
const serviceVersion = serviceImage.Labels.version;
serviceCreationDescriptor.Labels.version = serviceVersion;
const labels: interfaces.TLabels = {
...serviceCreationDescriptor.labels,
version: serviceVersion
};
const networkArray: any[] = [];
for (const network of serviceCreationDescriptor.networks) {
@ -71,11 +75,11 @@ export class DockerService {
}
const response = await dockerHost.request('POST', '/services/create', {
Name: serviceCreationDescriptor.Name,
Name: serviceCreationDescriptor.name,
TaskTemplate: {
ContainerSpec: {
Image: serviceCreationDescriptor.Image,
Labels: serviceCreationDescriptor.Labels,
Image: serviceCreationDescriptor.image,
Labels: labels,
Secrets: secretArray
},
UpdateConfig: {
@ -87,13 +91,13 @@ export class DockerService {
},
ForceUpdate: 1
},
Labels: serviceCreationDescriptor.Labels,
Labels: serviceCreationDescriptor.labels,
Networks: networkArray
});
const createdService = await DockerService.getServiceByName(
dockerHost,
serviceCreationDescriptor.Name
serviceCreationDescriptor.name
);
return createdService;
}

View File

@ -2,6 +2,7 @@ import * as interfaces from './';
export interface ISecretCreationDescriptor {
name: string;
version: string;
contentArg: any;
labels: interfaces.TLabels;
}

View File

@ -3,9 +3,9 @@ import { DockerNetwork } from '../docker.classes.network';
import { DockerSecret } from '../docker.classes.secret';
export interface IServiceCreationDescriptor {
Name: string;
Image: string;
Labels: interfaces.TLabels;
name: string;
image: string;
labels: interfaces.TLabels;
networks: DockerNetwork[];
networkAlias: string;
secrets: DockerSecret[];