mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
25 lines
551 B
YAML
25 lines
551 B
YAML
![]() |
---
|
||
|
$schema: http://json-schema.org/draft-04/schema#
|
||
|
title: Saltstack plugin manifest
|
||
|
type: object
|
||
|
properties:
|
||
|
plugins:
|
||
|
type: object
|
||
|
properties:
|
||
|
salt:
|
||
|
type: object
|
||
|
properties:
|
||
|
grains:
|
||
|
type: object
|
||
|
patternProperties:
|
||
|
^[^/\0]+$: {type: string}
|
||
|
minItems: 1
|
||
|
install_source:
|
||
|
enum:
|
||
|
- stable
|
||
|
- daily
|
||
|
- git
|
||
|
master: {type: string}
|
||
|
version: {type: string}
|
||
|
required: [install_source]
|