api: update image builder api

Update the api spec to include `masked` services
This commit is contained in:
Gianluca Zuccarelli 2024-03-12 12:31:54 +00:00 committed by Klara Simickova
parent ddedecc9f1
commit 4212337d7e
2 changed files with 9 additions and 0 deletions

View file

@ -1653,6 +1653,13 @@ components:
items:
type: string
example: "firewalld"
masked:
description: List of services to mask by default
type: array
minItems: 1
items:
type: string
example: "telnet"
Timezone:
type: object
description: Timezone configuration

View file

@ -524,6 +524,8 @@ export type Services = {
enabled?: string[];
/** List of services to disable by default */
disabled?: string[];
/** List of services to mask by default */
masked?: string[];
};
export type Kernel = {
/** Name of the kernel to use */