fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-06 10:16:44 +01:00
parent 4db8e24d75
commit dac22ddeb7
3 changed files with 3 additions and 8 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/interfaces',
version: '1.0.19',
version: '1.0.20',
description: 'interfaces for working with containers'
}

View File

@ -29,11 +29,6 @@ export interface ICluster {
*/
servers: IServerConfig[];
/**
* the containers running
*/
containers: IClusterConfigContainer[];
/**
* ACME info. This is used to get SSL certificates.
*/
@ -49,7 +44,7 @@ export interface ICluster {
};
}
export interface IClusterConfigContainer {
export interface IService {
name: string;
image: string;
ports: {

View File

@ -50,7 +50,7 @@ extends plugins.typedrequestInterfaces.implementsTR<
method: 'pushContainerUpdate'
request: {
configData: clusterInterfaces.ICluster;
specificContainerConfigToUpdate: clusterInterfaces.IClusterConfigContainer;
specificContainerConfigToUpdate: clusterInterfaces.IService;
};
response: {}
}