fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-01 15:49:10 +01:00
parent ea3753425e
commit b4fb434129
2 changed files with 4 additions and 1 deletions

View File

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

View File

@ -1,6 +1,8 @@
import { type IDockerRegistryInfo, type IServiceRessources } from './docker.js';
import type { IServerConfig } from './server.js';
export interface IClusterConfig {
id: string;
name: string;
zone: 'servezone' | 'gitzone' | 'shipzone' | 'umbrellazone' | 'trafficzone' | 'proxyzone';
type: 'cluster';
@ -9,6 +11,7 @@ export interface IClusterConfig {
jumpCodeUsedAt: number;
manager_domain: string;
manager_ip: string;
servers: IServerConfig[];
containers: IClusterConfigContainer[];
acmeInfo: {
serverAddress: string;