api: update image builder api
Update the api spec to include `masked` services
This commit is contained in:
parent
ddedecc9f1
commit
4212337d7e
2 changed files with 9 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue