repository
stringclasses
528 values
commit
stringlengths
40
40
commitDate
timestamp[s]
path
stringlengths
11
149
repoStars
int64
5
94.9k
repoLastFetched
stringclasses
528 values
content
stringlengths
48
736k
license
stringclasses
14 values
language
stringclasses
7 values
prcr/mkdocs-meta-descriptions-plugin
17dcaed58562bb5ce01894a7a804b12ba3937e7d
2022-10-09T09:56:57
schema.json
16
2024-05-28T04:45:36.726592Z
{ "$schema": "https://json-schema.org/draft-07/schema", "oneOf": [ { "enum": [ "meta-descriptions" ], "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#readme" }, { "additionalProperties": false, "properties": { "meta-descriptions": { "additionalProperties": false, "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#configuring-the-plugin", "properties": { "enable_checks": { "default": "false", "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#enable_checks", "title": "Enable checks", "type": "boolean" }, "export_csv": { "default": "false", "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#export_csv", "title": "Export CSV", "type": "boolean" }, "max_length": { "default": 160, "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#max_length", "minimum": 0, "title": "Maximum length", "type": "integer" }, "min_length": { "default": 50, "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#min_length", "minimum": 0, "title": "Minimum length", "type": "integer" }, "quiet": { "default": "false", "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#quiet", "title": "Quiet output", "type": "boolean" } }, "type": "object" } }, "type": "object" } ], "title": "Generate meta descriptions from the first paragraphs in your MkDocs pages" }
MIT
en
prcr/mkdocs-meta-descriptions-plugin
02dd8b0acbd1c5d30698034967770f5909da16c5
2023-07-31T15:40:29
schema.json
16
2024-05-28T04:45:36.726592Z
{ "$schema": "https://json-schema.org/draft-07/schema", "oneOf": [ { "enum": [ "meta-descriptions" ], "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#readme" }, { "additionalProperties": false, "properties": { "meta-descriptions": { "additionalProperties": false, "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#configuring-the-plugin", "properties": { "enable_checks": { "default": "false", "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#enable_checks", "title": "Enable checks", "type": "boolean" }, "export_csv": { "default": "false", "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#export_csv", "title": "Export CSV", "type": "boolean" }, "max_length": { "default": 160, "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#max_length", "minimum": 0, "title": "Maximum length", "type": "integer" }, "min_length": { "default": 50, "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#min_length", "minimum": 0, "title": "Minimum length", "type": "integer" }, "quiet": { "default": "false", "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#quiet", "title": "Quiet output", "type": "boolean" }, "trim": { "default": "false", "markdownDescription": "https://github.com/prcr/mkdocs-meta-descriptions-plugin#trim", "title": "Trim meta descriptions", "type": "boolean" } }, "type": "object" } }, "type": "object" } ], "title": "Generate meta descriptions from the first paragraphs in your MkDocs pages" }
MIT
en
CRModders/CRM-1
c8b40956be540d3486f929c0e72978e882b610d1
2024-03-17T14:10:04
spec/version-1.json
5
2024-05-27T07:10:35.675937Z
{ "lastUpdated": 0, "mods": [ { "authors": [ "Hellscaped" ], "deps": [ { "id": "io.github.crmodders.wirelib", "source": "io.github.crmodders", "version": "4.2.0" } ], "desc": "Mod that adds wiring to Cosmic Reach.", "ext": { "icon": "https://example.com/WireMod.png" }, "gameVersion": "0.1.7", "id": "io.github.crmodders.wiremod", "name": "WireMod", "url": "https://example.com/WireMod-0.6.9.jar", "version": "0.6.9" }, { "authors": [ "Hellscaped" ], "deps": [], "desc": "Shared code mod for wiring primarily used in WireMod.", "ext": {}, "gameVersion": "0.1.7", "id": "io.github.crmodders.wirelib", "name": "WireLib", "url": "https://example.com/WireLib-4.2.0.jar", "version": "4.2.0" } ], "rootId": "io.github.crmodders", "specVersion": "1" }
MIT
en
CRModders/CRM-1
1ee9bce5c95142b78451731003d31bdade5bc62b
2024-04-05T03:58:40
spec/version-1.json
5
2024-05-27T07:10:35.675937Z
{ "$schema": "https://json-schema.org/draft-04/schema", "definitions": { "dependency": { "description": "A single dependency for a mod.", "properties": { "id": { "$ref": "#/definitions/id", "description": "The ID of the mod." }, "source": { "$ref": "#/definitions/id", "description": "The ID of the repo to find the mod at." }, "version": { "$ref": "#/definitions/versionRange", "description": "The version range for the dependency." } }, "required": [ "id", "version", "source" ], "type": "object" }, "id": { "pattern": "^[a-zA-Z0-9_\\.]*$", "type": "string" }, "mod": { "description": "A single mod hosted in your repository.", "properties": { "authors": { "description": "A list of all authors for the mod.", "items": { "type": "string" }, "type": "array" }, "deps": { "description": "A list of dependencies for the mod.", "items": { "$ref": "#/definitions/dependency" }, "type": "array" }, "desc": { "description": "The description of the mod.", "type": "string" }, "ext": { "description": "Extension information for the mod. This is used for any unofficial data used by launchers, tools, other mods, etc.", "type": "object" }, "gameVersion": { "$ref": "#/definitions/versionRange", "description": "The version of Cosmic Reach that the mod is made for." }, "id": { "$ref": "#/definitions/id", "description": "The ID of the mod. In most cases this should be the Maven ID of your mod." }, "name": { "description": "The name of the mod.", "type": "string" }, "url": { "description": "The URL to download the latest version of the mod at.", "type": "string" }, "version": { "description": "The latest version of the mod on the repository.", "type": "string" } }, "required": [ "id", "name", "desc", "authors", "version", "gameVersion", "url", "deps", "ext" ], "type": "object" }, "versionRange": { "pattern": "[([][0-9a-zA-Z_\\-\\.,]*[)\\]]", "type": "string" } }, "properties": { "lastUpdated": { "type": "integer" }, "mods": { "description": "A list of all mods in the repository.", "items": { "$ref": "#/definitions/mod" }, "type": "array" }, "rootId": { "$ref": "#/definitions/id", "description": "The ID of the repository. In most cases this should be your root Maven ID." }, "specVersion": { "description": "The version of CRM-1 to use.", "type": "integer" } }, "required": [ "specVersion", "rootId", "lastUpdated", "mods" ], "type": "object" }
MIT
en
CRModders/CRM-1
503edc30ab1420ecd55d41a07d50f11b2a25befa
2024-04-09T17:37:38
spec/version-2.json
5
2024-05-27T07:10:35.675937Z
{ "$schema": "https://json-schema.org/draft-04/schema", "definitions": { "dependency": { "description": "A single dependency for a mod.", "properties": { "id": { "$ref": "#/definitions/id", "description": "The ID of the mod." }, "source": { "$ref": "#/definitions/id", "description": "The ID of the repo to find the mod at." }, "version": { "$ref": "#/definitions/versionRange", "description": "The version range for the dependency." } }, "required": [ "id", "version", "source" ], "type": "object" }, "id": { "pattern": "^[a-zA-Z0-9_\\.]*$", "type": "string" }, "mod": { "description": "A single mod hosted in your repository.", "properties": { "authors": { "description": "A list of all authors for the mod.", "items": { "type": "string" }, "type": "array" }, "deps": { "description": "A list of dependencies for the mod.", "items": { "$ref": "#/definitions/dependency" }, "type": "array" }, "desc": { "description": "The description of the mod.", "type": "string" }, "ext": { "description": "Extension information for the mod. This is used for any unofficial data used by launchers, tools, other mods, etc.", "type": "object" }, "gameVersion": { "$ref": "#/definitions/versionRange", "description": "The version of Cosmic Reach that the mod is made for." }, "id": { "$ref": "#/definitions/id", "description": "The ID of the mod. In most cases this should be the Maven ID of your mod." }, "name": { "description": "The name of the mod.", "type": "string" }, "url": { "description": "The URL to download the latest version of the mod at.", "type": "string" }, "version": { "description": "The latest version of the mod on the repository.", "type": "string" } }, "required": [ "id", "name", "desc", "authors", "version", "gameVersion", "url", "deps", "ext" ], "type": "object" }, "versionRange": { "pattern": "[([][0-9a-zA-Z_\\-\\.,]*[)\\]]", "type": "string" } }, "properties": { "deps": { "description": "A list of other repos that hosts mods depended on by mods hosted in this repo.", "items": { "description": "A single repo. Typically this should be a URL.", "type": "string" }, "type": "array" }, "lastUpdated": { "description": "A Unix timestamp of when this repo was last updated. This does not need to be 100% accurate.", "type": "integer" }, "mods": { "description": "A list of all mods in the repository.", "items": { "$ref": "#/definitions/mod" }, "type": "array" }, "rootId": { "$ref": "#/definitions/id", "description": "The ID of the repository. In most cases this should be your root Maven ID." }, "specVersion": { "description": "The version of CRM-1 to use.", "type": "integer" } }, "required": [ "specVersion", "rootId", "lastUpdated", "mods" ], "type": "object" }
MIT
en
Shopify/function-examples
799f39fdc24a8b292428a8b97a9534025e817c0f
2023-02-08T22:48:39
sample-apps/bundles-cart-transform/resources/component_parents_schema.json
161
2024-05-28T06:09:24.108638Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "A definition of the bundle a child belongs to", "items": { "properties": { "component_quantities": { "properties": { "value": { "description": "Array of quantities of product variants defined in component_reference: [1]", "items": { "type": "integer" }, "minItems": 1, "type": "array" } }, "required": [ "value" ], "type": "object" }, "component_reference": { "properties": { "value": { "description": "Array of product variant IDs: [gid://shopify/ProductVariant/<id number>]", "items": { "type": "string" }, "minItems": 1, "type": "array", "uniqueItems": true } }, "required": [ "value" ], "type": "object" }, "id": { "description": "ID of bundle parent product variant: gid://shopify/ProductVariant/<id number>", "type": "string" } }, "required": [ "id", "component_reference", "component_quantities" ], "type": "object" }, "title": "Bundle component parents", "type": "array" }
MIT
en
NPLinker/nplinker
bd4580723aa430ba02b8afdba65a3f927a20e862
2023-12-14T10:34:06
src/nplinker/schemas/user_strains.json
14
2024-05-29T09:23:25.811547Z
{ "$id": "https://raw.githubusercontent.com/NPLinker/nplinker/main/src/nplinker/schemas/user_strains.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A list of strain IDs specified by user", "properties": { "strain_ids": { "description": "A list of strain IDs specificed by user. The strain IDs must be the same as the ones in the strain mappings file.", "items": { "minLength": 1, "type": "string" }, "minItems": 1, "title": "Strain IDs", "type": "array", "uniqueItems": true }, "version": { "enum": [ "1.0" ], "type": "string" } }, "required": [ "strain_ids" ], "title": "User specificed strains", "type": "object" }
Apache-2.0
en
NPLinker/nplinker
e1973da6b667ee0e0c18112ae235a76bbeeead49
2023-08-09T13:47:07
src/nplinker/schemas/genome_bgc_mappings_schema.json
14
2024-05-29T09:23:25.811547Z
{ "$id": "https://raw.githubusercontent.com/NPLinker/nplinker/main/src/nplinker/schemas/genome_bgc_mappings_schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A list of mappings from genome ID to BGC (biosynthetic gene cluster) IDs", "properties": { "mappings": { "description": "A list of mappings from genome ID to BGC IDs", "items": { "properties": { "BGC_ID": { "description": "A list of BGC IDs", "items": { "minLength": 1, "type": "string" }, "minItems": 1, "title": "BGC ID", "type": "array", "uniqueItems": true }, "genome_ID": { "description": "The genome ID used in BGC database such as antiSMASH", "minLength": 1, "title": "Genome ID", "type": "string" } }, "required": [ "genome_ID", "BGC_ID" ], "type": "object" }, "minItems": 1, "title": "Mappings from genome ID to BGC IDs", "type": "array", "uniqueItems": true }, "version": { "enum": [ "1.0" ], "type": "string" } }, "required": [ "mappings", "version" ], "title": "Mappings from genome ID to BGC IDs", "type": "object" }
Apache-2.0
en
NPLinker/nplinker
e1973da6b667ee0e0c18112ae235a76bbeeead49
2023-08-09T13:47:07
src/nplinker/schemas/strain_mappings_schema.json
14
2024-05-29T09:23:25.811547Z
{ "$id": "https://raw.githubusercontent.com/NPLinker/nplinker/main/src/nplinker/schemas/strain_mappings_schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A list of mappings from strain ID to strain aliases", "properties": { "strain_mappings": { "description": "A list of strain mappings", "items": { "properties": { "strain_alias": { "description": "A list of strain aliases, which could be any names that refer to the same strain", "items": { "minLength": 1, "type": "string" }, "minItems": 1, "title": "Strain aliases", "type": "array", "uniqueItems": true }, "strain_id": { "description": "Strain ID, which could be any strain name or accession number", "minLength": 1, "title": "Strain ID", "type": "string" } }, "required": [ "strain_id", "strain_alias" ], "type": "object" }, "minItems": 1, "title": "Strain mappings", "type": "array", "uniqueItems": true }, "version": { "enum": [ "1.0" ], "type": "string" } }, "required": [ "strain_mappings", "version" ], "title": "Strain mappings", "type": "object" }
Apache-2.0
en
NPLinker/nplinker
e1973da6b667ee0e0c18112ae235a76bbeeead49
2023-08-09T13:47:07
src/nplinker/schemas/genome_status_schema.json
14
2024-05-29T09:23:25.811547Z
{ "$id": "https://raw.githubusercontent.com/NPLinker/nplinker/main/src/nplinker/schemas/genome_status_schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A list of genome status objects, each of which contains information about a single genome", "properties": { "genome_status": { "description": "A list of genome status objects", "items": { "properties": { "bgc_path": { "description": "The path to the downloaded BGC file for this genome", "title": "BGC Path", "type": "string" }, "original_id": { "description": "The original ID of the genome", "minLength": 1, "title": "Original ID", "type": "string" }, "resolve_attempted": { "description": "Whether or not an attempt was made to resolve this genome", "title": "Resolve Attempted", "type": "boolean" }, "resolved_refseq_id": { "description": "The RefSeq ID that was resolved for this genome", "title": "Resolved RefSeq ID", "type": "string" } }, "required": [ "original_id", "resolved_refseq_id", "resolve_attempted", "bgc_path" ], "type": "object" }, "minItems": 1, "title": "Genome status", "type": "array", "uniqueItems": true }, "version": { "enum": [ "1.0" ], "type": "string" } }, "required": [ "genome_status", "version" ], "title": "Status of genomes", "type": "object" }
Apache-2.0
en
HXL-CPLP/Auxilium-Humanitarium-API
ac179a96aaa9e37b4224462a750247a748839f1c
2021-05-28T05:04:32
schema/iso/iso15924/eng/iso15924.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "https://www.unicode.org/iso15924/codelists.html, https://www.unicode.org/iso15924/iso15924.txt", "$id": "https://hapi.etica.ai/schema/iso/iso15924/eng/iso15924.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "ISO 15924: Codes for the representation of names of scripts", "properties": { "Code": { "description": "Code", "example": "Arab", "length": 4, "type": "string" }, "Date": { "description": "Date", "example": "2004-05-01", "format": "date", "type": "string" }, "English Name": { "$comment": "TODO: investigate maximum length", "description": "English Name", "example": "por", "type": "string" }, "Nom fran\u00e7ais": { "$comment": "TODO: investigate maximum length", "description": "Nom fran\u00e7ais", "example": "arabe", "type": "string" }, "N\u00ba": { "description": "N\u00ba", "example": "160", "length": 3, "type": "string" }, "PVA": { "$comment": "TODO: investigate maximum length", "description": "The Property Value Alias is defined as part of the Unicode Standard and is provided informatively in the tables here to show how entries in the ISO 15924 code table relate to script names defined in Unicode.", "example": "Arabic", "type": "string" }, "Unicode Version": { "description": "Unicode Version", "example": "1.1", "type": "number" } }, "title": "ISO 15924", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
bf8b10db5debdda2d776fb03949621bb7967b1b6
2021-06-03T00:37:32
_includes/schema/iso639-3/iso639-3.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_table_definition.txt", "$id": "{{ site.url }}{{ page.url }}", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_summarius \ud83d\udde3\ufe0f_ %}", "properties": { "Comment": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Ref_Name_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Ref_Name_exemplum \ud83d\udde3\ufe0f_ %}", "maxLengh": 150, "type": "string" }, "Id": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Id_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Id_exemplum \ud83d\udde3\ufe0f_ %}", "length": 3, "type": "string" }, "Part1": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part1_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part1_exemplum \ud83d\udde3\ufe0f_ %}", "length": 2, "type": "string" }, "Part2B": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2B_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2B_exemplum \ud83d\udde3\ufe0f_ %}", "length": 3, "type": "string" }, "Part2T": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2T_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2T_exemplum \ud83d\udde3\ufe0f_ %}", "length": 3, "type": "string" }, "Ref_Name": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Ref_Name_summarius \ud83d\udde3\ufe0f_ %}", "maxLengh": 150, "type": "string" }, "Scope": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Scope_summarius \ud83d\udde3\ufe0f_ %}", "enum": [ "I", "M", "S" ], "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Scope_exemplum \ud83d\udde3\ufe0f_ %}", "length": 1, "type": "string" }, "Type": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Type_summarius \ud83d\udde3\ufe0f_ %}", "enum": [ "A", "C", "E", "H", "L", "S" ], "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Type_exemplum \ud83d\udde3\ufe0f_ %}", "length": 1, "type": "string" } }, "required": [ "Id", "Scope", "Type", "Ref_Name" ], "title": "{% _\ud83d\udde3\ufe0f ISO_639-3_nomen \ud83d\udde3\ufe0f_ %}", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
896743f97db27092287b731761fe62dcadffc958
2021-05-28T19:18:27
_includes/schema/iso639-3/iso639-3.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_table_definition.txt", "$id": "{{ site.url }}{{ page.url }}", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Codes for the representation of names of languages \u2013 Part 3: Alpha-3 code for comprehensive coverage of languages", "properties": { "Comment": { "description": "Comment relating to one or more of the columns", "maxLengh": 150, "type": "string" }, "Id": { "description": "The three-letter 639-3 identifier", "example": "por", "length": 3, "type": "string" }, "Part1": { "description": "Equivalent 639-1 identifier, if there is one", "example": "pt", "length": 2, "type": "string" }, "Part2B": { "description": "Equivalent 639-2 identifier of the bibliographic applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Part2T": { "description": "Equivalent 639-2 identifier of the terminology applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Ref_Name": { "description": "Reference language name", "maxLengh": 150, "type": "string" }, "Scope": { "description": "I(ndividual), M(acrolanguage), S(pecial)", "enum": [ "I", "M", "S" ], "length": 1, "type": "string" }, "Type": { "description": "A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), S(pecial)", "enum": [ "A", "C", "E", "H", "L", "S" ], "length": 1, "type": "string" } }, "required": [ "Id", "Scope", "Type", "Ref_Name" ], "title": "{% __ ISO_639-3_nomen %}", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
a7a103a31cc456c538802c21cc498225e750e9b8
2021-05-28T20:12:41
_includes/schema/iso639-3/iso639-3.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_table_definition.txt", "$id": "{{ site.url }}{{ page.url }}", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "{% _ ISO_639-3_summarius _ %}", "properties": { "Comment": { "description": "{% _ ISO_639-3_optionem_Ref_Name_summarius _ %}", "example": "{% _ ISO_639-3_optionem_Ref_Name_exemplum _ %}", "maxLengh": 150, "type": "string" }, "Id": { "description": "{% _ ISO_639-3_optionem_Id_summarius _ %}", "example": "{% _ ISO_639-3_optionem_Id_exemplum _ %}", "length": 3, "type": "string" }, "Part1": { "description": "{% _ ISO_639-3_optionem_Part1_summarius _ %}", "example": "{% _ ISO_639-3_optionem_Part1_exemplum _ %}", "length": 2, "type": "string" }, "Part2B": { "description": "{% _ ISO_639-3_optionem_Part2B_summarius _ %}", "example": "{% _ ISO_639-3_optionem_Part2B_exemplum _ %}", "length": 3, "type": "string" }, "Part2T": { "description": "{% _ ISO_639-3_optionem_Part2T_summarius _ %}", "example": "{% _ ISO_639-3_optionem_Part2T_exemplum %}", "length": 3, "type": "string" }, "Ref_Name": { "description": "{% _ ISO_639-3_optionem_Ref_Name_summarius _ %}", "maxLengh": 150, "type": "string" }, "Scope": { "description": "{% _ ISO_639-3_optionem_Scope_summarius _ %}", "enum": [ "I", "M", "S" ], "example": "{% _ ISO_639-3_optionem_Scope_exemplum _ %}", "length": 1, "type": "string" }, "Type": { "description": "{% _ ISO_639-3_optionem_Type_summarius _ %}", "enum": [ "A", "C", "E", "H", "L", "S" ], "example": "{% _ ISO_639-3_optionem_Type_exemplum _ %}", "length": 1, "type": "string" } }, "required": [ "Id", "Scope", "Type", "Ref_Name" ], "title": "{% _ ISO_639-3_nomen _ %}", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
f7f97df8d8031969f829877522bdfae446261db1
2021-05-08T20:45:56
schema/iso/iso639-3/eng/iso639-3.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_table_definition.txt", "$id": "https://hapi.etica.ai/schema/iso/iso639-3/eng/iso639-3.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Codes for the representation of names of languages \u2013 Part 3: Alpha-3 code for comprehensive coverage of languages", "properties": { "Comment": { "description": "Comment relating to one or more of the columns", "maxLengh": 150, "type": "string" }, "Id": { "description": "The three-letter 639-3 identifier", "example": "por", "length": 3, "type": "string" }, "Part1": { "description": "Equivalent 639-1 identifier, if there is one", "example": "pt", "length": 2, "type": "string" }, "Part2B": { "description": "Equivalent 639-2 identifier of the bibliographic applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Part2T": { "description": "Equivalent 639-2 identifier of the terminology applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Ref_Name": { "description": "Reference language name", "maxLengh": 150, "type": "string" }, "Scope": { "description": "I(ndividual), M(acrolanguage), S(pecial)", "enum": [ "I", "M", "S" ], "length": 1, "type": "string" }, "Type": { "description": "A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), S(pecial)", "enum": [ "A", "C", "E", "H", "L", "S" ], "length": 1, "type": "string" } }, "required": [ "Id", "Scope", "Type", "Ref_Name" ], "title": "ISO 639-3 Code Set", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
ec22e7690727f8719d0c9101c69cab2a96765729
2021-06-02T21:45:47
_includes/schema/iso639-3/iso639-3.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_table_definition.txt", "$id": "{{ site.url }}{{ page.url }}", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_summarius \ud83d\udde3\ufe0f_ %}", "properties": { "Comment": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Ref_Name_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Ref_Name_exemplum \ud83d\udde3\ufe0f_ %}", "maxLengh": 150, "type": "string" }, "Id": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Id_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Id_exemplum \ud83d\udde3\ufe0f_ %}", "length": 3, "type": "string" }, "Part1": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part1_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part1_exemplum \ud83d\udde3\ufe0f_ %}", "length": 2, "type": "string" }, "Part2B": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2B_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2B_exemplum \ud83d\udde3\ufe0f_ %}", "length": 3, "type": "string" }, "Part2T": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2T_summarius \ud83d\udde3\ufe0f_ %}", "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Part2T_exemplum %}", "length": 3, "type": "string" }, "Ref_Name": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Ref_Name_summarius \ud83d\udde3\ufe0f_ %}", "maxLengh": 150, "type": "string" }, "Scope": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Scope_summarius \ud83d\udde3\ufe0f_ %}", "enum": [ "I", "M", "S" ], "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Scope_exemplum \ud83d\udde3\ufe0f_ %}", "length": 1, "type": "string" }, "Type": { "description": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Type_summarius \ud83d\udde3\ufe0f_ %}", "enum": [ "A", "C", "E", "H", "L", "S" ], "example": "{% _\ud83d\udde3\ufe0f ISO_639-3_optionem_Type_exemplum \ud83d\udde3\ufe0f_ %}", "length": 1, "type": "string" } }, "required": [ "Id", "Scope", "Type", "Ref_Name" ], "title": "{% _\ud83d\udde3\ufe0f ISO_639-3_nomen \ud83d\udde3\ufe0f_ %}", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
b452e6867a564d1651eb3d8458baf4ddea48e3f2
2021-05-09T13:17:35
schema/iso/iso15924/eng/iso15924.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "https://www.unicode.org/iso15924/codelists.html, https://www.unicode.org/iso15924/iso15924.txt", "$id": "https://hapi.etica.ai/schema/iso/iso15924/eng/iso15924.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "ISO 15924: Codes for the representation of names of scripts", "properties": { "Code": { "description": "Code", "example": "Arab", "length": 4, "type": "string" }, "Date": { "description": "Date", "example": "2004-05-01", "format": "date", "type": "string" }, "English Name": { "$comment": "TODO: investigate maximum length", "description": "English Name", "example": "por", "type": "string" }, "Nom fran\u00e7ais": { "$comment": "TODO: investigate maximum length", "description": "Nom fran\u00e7ais", "example": "arabe", "type": "string" }, "N\u00ba": { "description": "N\u00ba", "example": "160", "length": 3, "type": "string" }, "PVA": { "$comment": "TODO: investigate maximum length", "description": "The Property Value Alias is defined as part of the Unicode Standard and is provided informatively in the tables here to show how entries in the ISO 15924 code table relate to script names defined in Unicode.", "example": "Arabic", "type": "string" }, "Unicode Version": { "description": "Unicode Version", "example": "1.1", "type": "number" } }, "title": "ISO 15924", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
ac179a96aaa9e37b4224462a750247a748839f1c
2021-05-28T05:04:32
schema/iso/iso639-3/eng/iso639-3.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_table_definition.txt", "$id": "https://hapi.etica.ai/schema/iso/iso639-3/eng/iso639-3.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Codes for the representation of names of languages \u2013 Part 3: Alpha-3 code for comprehensive coverage of languages", "properties": { "Comment": { "description": "Comment relating to one or more of the columns", "maxLengh": 150, "type": "string" }, "Id": { "description": "The three-letter 639-3 identifier", "example": "por", "length": 3, "type": "string" }, "Part1": { "description": "Equivalent 639-1 identifier, if there is one", "example": "pt", "length": 2, "type": "string" }, "Part2B": { "description": "Equivalent 639-2 identifier of the bibliographic applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Part2T": { "description": "Equivalent 639-2 identifier of the terminology applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Ref_Name": { "description": "Reference language name", "maxLengh": 150, "type": "string" }, "Scope": { "description": "I(ndividual), M(acrolanguage), S(pecial)", "enum": [ "I", "M", "S" ], "length": 1, "type": "string" }, "Type": { "description": "A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), S(pecial)", "enum": [ "A", "C", "E", "H", "L", "S" ], "length": 1, "type": "string" } }, "required": [ "Id", "Scope", "Type", "Ref_Name" ], "title": "ISO 639-3", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
308cb2ff57c5c8e6a1b14adb4fa6fedccd7d3304
2021-06-15T15:06:31
schemam/UN/CODV2API/v1.0/location-item-cod-ab.eng.schema.json
10
2024-05-28T02:55:29.373106Z
{ "$id": "https://hapi.etica.ai/schema/CODV2API/v1.0/location-item-cod-ab.eng.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "JSON schema (English descriptions) from items of https://beta.itos.uga.edu/CODV2API/api/v1/themes/cod-ab/locations/SDN (as 2021-05-05) \nJSON Schem specification here https://json-schema.org/ \nExample of online editor: https://www.jsonschemavalidator.net/", "patternProperties": { "^_": { "description": "Properties starting with Properties are tolerated, since we're enforcing additionalProperties=false", "type": [ "string", "array", "object" ] } }, "properties": { "Total": { "description": "TODO: Total description", "type": "integer" }, "admin0Name_ref": { "description": "TODO: admin0Name_ref description", "example": "Sudan", "maxLength": 128, "minLength": 3, "type": "string" }, "admin0Pcode": { "description": "TODO: admin0Pcode description", "example": "sdn", "maxLength": 3, "minLength": 3, "type": "string" }, "comments": { "description": "TODO: comments description", "type": [ "string", "null" ] }, "valid_from": { "description": "TODO: valid_from description", "format": "date-time", "type": "string" }, "valid_to": { "description": "TODO: valid_to description", "format": "date-time", "type": "string" }, "version": { "description": "TODO: version description", "example": "Latest", "type": "string" } }, "required": [ "admin0Pcode", "admin0Name_ref", "version", "valid_from", "valid_to" ], "title": "UN/CODV2API v1.0 location-item", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
b452e6867a564d1651eb3d8458baf4ddea48e3f2
2021-05-09T13:17:35
schema/iso/iso639-3/eng/iso639-3.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_table_definition.txt", "$id": "https://hapi.etica.ai/schema/iso/iso639-3/eng/iso639-3.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Codes for the representation of names of languages \u2013 Part 3: Alpha-3 code for comprehensive coverage of languages", "properties": { "Comment": { "description": "Comment relating to one or more of the columns", "maxLengh": 150, "type": "string" }, "Id": { "description": "The three-letter 639-3 identifier", "example": "por", "length": 3, "type": "string" }, "Part1": { "description": "Equivalent 639-1 identifier, if there is one", "example": "pt", "length": 2, "type": "string" }, "Part2B": { "description": "Equivalent 639-2 identifier of the bibliographic applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Part2T": { "description": "Equivalent 639-2 identifier of the terminology applications code set, if there is one", "example": "por", "length": 3, "type": "string" }, "Ref_Name": { "description": "Reference language name", "maxLengh": 150, "type": "string" }, "Scope": { "description": "I(ndividual), M(acrolanguage), S(pecial)", "enum": [ "I", "M", "S" ], "length": 1, "type": "string" }, "Type": { "description": "A(ncient), C(onstructed), E(xtinct), H(istorical), L(iving), S(pecial)", "enum": [ "A", "C", "E", "H", "L", "S" ], "length": 1, "type": "string" } }, "required": [ "Id", "Scope", "Type", "Ref_Name" ], "title": "ISO 639-3", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
308cb2ff57c5c8e6a1b14adb4fa6fedccd7d3304
2021-06-15T15:06:31
schemam/UN/CODV2API/v1.0/location-item.eng.schema.json
10
2024-05-28T02:55:29.373106Z
{ "$id": "https://hapi.etica.ai/schema/CODV2API/v1.0/location-item.eng.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "JSON schema (English descriptions) from items of https://beta.itos.uga.edu/CODV2API/api/v1/locations (as 2021-05-05) \nJSON Schem specification here https://json-schema.org/ \nExample of online editor: https://www.jsonschemavalidator.net/", "patternProperties": { "^_": { "description": "Properties starting with Properties are tolerated, since we're enforcing additionalProperties=false", "type": [ "string", "array", "object" ] } }, "properties": { "Themes": { "$comment": "How to use enums: https://json-schema.org/understanding-json-schema/reference/generic.html?highlight=enum#enumerated-values", "description": "TODO: location_iso description", "items": { "enum": [ "Administrative Boundary", "Population Statistics" ], "type": "string" }, "type": "array" }, "Total": { "description": "TODO: Total description", "type": "integer" }, "location_iso": { "description": "TODO: location_iso description", "maxLength": 3, "minLength": 3, "type": "string" }, "location_name": { "description": "TODO: location_name description", "maxLength": 128, "minLength": 3, "type": "string" }, "status": { "description": "TODO: status description", "type": "string" } }, "required": [ "location_iso", "location_name", "Themes", "Total" ], "title": "UN/CODV2API v1.0 location-item", "type": "object" }
Unlicense
null
HXL-CPLP/Auxilium-Humanitarium-API
f7f97df8d8031969f829877522bdfae446261db1
2021-05-08T20:45:56
schema/iso/iso639-3/eng/iso639-3_macrolanguages.json
10
2024-05-28T02:55:29.373106Z
{ "$comment": "See https://iso639-3.sil.org/code_tables/download_tables \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3-macrolanguages.tab \n https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso639-3_macrolanguages_table_definition.txt", "$id": "https://hapi.etica.ai/schema/iso/iso639-3/eng/iso639-3_macrolanguages.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Codes for the representation of names of languages \u2013 Part 3: Alpha-3 code for comprehensive coverage of languages", "properties": { "I_Id": { "description": "The identifier for an individual language that is a member of the macrolanguage", "example": "arb", "length": 3, "type": "string" }, "I_Status": { "description": "A (active) or R (retired) indicating the status of the individual code element", "enum": [ "A", "R", "S" ], "length": 1, "type": "string" }, "M_Id": { "description": "The identifier for a macrolanguage", "example": "ara", "length": 3, "type": "string" } }, "required": [ "M_Id", "I_Id", "I_Status" ], "title": "ISO 639-3 Macrolanguage Mappings", "type": "object" }
Unlicense
null
ecmchow/ip-analyzer
a6fbf49e1739cb696dc9ef63f985ed7eb1d3e526
2022-08-11T08:34:04
Core/schema/ip.json
26
2024-05-27T06:19:08.182159Z
{ "$id": "schema://ecmchow/ip-analyzer/ip.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "ip": { "anyOf": [ { "format": "ipv4", "type": "string" }, { "format": "ipv6", "type": "string" } ] } }, "required": [ "ip" ], "type": "object" }
MIT
en
ecmchow/ip-analyzer
a6fbf49e1739cb696dc9ef63f985ed7eb1d3e526
2022-08-11T08:34:04
Core/schema/env.json
26
2024-05-27T06:19:08.182159Z
{ "$id": "schema://ecmchow/ip-analyzer/env.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "ANALYZER_ADDR": { "default": "127.0.0.1", "format": "ipv4", "type": "string" }, "ANALYZER_AUTH": { "type": "boolean" }, "ANALYZER_AUTH_HASH": { "minimum": 1, "type": "string" }, "ANALYZER_AUTH_HASH_METHOD": { "enum": [ "bcrypt", "argon2i", "sodium" ] }, "ANALYZER_LOG": { "type": "boolean" }, "ANALYZER_LOG_LEVEL": { "enum": [ "debug", "info", "notice", "warning", "error" ] }, "ANALYZER_LOG_OUTPUT": { "enum": [ "error_log", "syslog" ] }, "ANALYZER_MAX_MEMORY": { "minimum": 16, "type": "integer" }, "ANALYZER_MAX_REQUEST": { "type": "integer" }, "ANALYZER_PORT": { "default": 3000, "minimum": 1, "type": "integer" }, "ANALYZER_PROTO": { "default": "tcp", "enum": [ "tcp", "ssl" ], "type": "string" }, "ANALYZER_RESTART_CRON": { "anyOf": [ { "pattern": "(((\\d+,)+\\d+|(\\d+(\\/|-)\\d+)|\\d+|\\*) ?){5,7}", "type": "string" }, { "maxLength": 0, "minLength": 0, "type": "string" } ] }, "ANALYZER_SSL_CERT": { "type": "string" }, "ANALYZER_SSL_KEY": { "type": "string" }, "ANALYZER_WORKERS": { "minimum": 1, "type": "integer" }, "IPSUM_DIR": { "type": "string" }, "IPSUM_ENABLE": { "default": false, "type": "boolean" }, "IPSUM_MAX_LINES": { "default": 100000, "minimum": 1, "type": "integer" }, "IPSUM_MIN_LEVEL": { "default": 2, "minimum": 1, "type": "integer" }, "IPSUM_UPDATE_CRON": { "anyOf": [ { "pattern": "(((\\d+,)+\\d+|(\\d+(\\/|-)\\d+)|\\d+|\\*) ?){5,7}", "type": "string" }, { "maxLength": 0, "minLength": 0, "type": "string" } ] }, "IPSUM_URL": { "anyOf": [ { "format": "uri", "type": "string" }, { "maxLength": 0, "minLength": 0, "type": "string" } ] }, "MMDB_DIR": { "type": "string" }, "MMDB_FALLBACK": { "type": "string" }, "MMDB_RELOAD_CRON": { "anyOf": [ { "pattern": "(((\\d+,)+\\d+|(\\d+(\\/|-)\\d+)|\\d+|\\*) ?){5,7}", "type": "string" }, { "maxLength": 0, "minLength": 0, "type": "string" } ] }, "REDIS_ADDR": { "default": "127.0.0.1", "format": "ipv4", "type": "string" }, "REDIS_CACHE_EXPIRE_MODE": { "default": "ttl", "enum": [ "ttl", "maxitem" ], "type": "string" }, "REDIS_CACHE_EXPIRE_TTL": { "default": 3600, "minimum": 1, "type": "integer" }, "REDIS_CACHE_MAX_ITEM": { "default": 100, "minimum": 1, "type": "integer" }, "REDIS_CACHE_RESET_TTL_ON_GET": { "default": true, "type": "boolean" }, "REDIS_CACHE_RESULT": { "default": true, "type": "boolean" }, "REDIS_ENABLE": { "default": false, "type": "boolean" }, "REDIS_KEY_PREFIX": { "type": "string" }, "REDIS_PASSWORD": { "type": "string" }, "REDIS_PORT": { "default": 6379, "minimum": 1, "type": "integer" }, "REDIS_PROTO": { "default": "tcp", "enum": [ "tcp", "tls" ], "type": "string" }, "REDIS_READ_TIMEOUT": { "default": 10, "minimum": 0, "type": "integer" }, "REDIS_RESET_STATS_ON_START": { "default": true, "type": "boolean" }, "REDIS_RETRY_INTERVAL": { "default": 100, "minimum": 0, "type": "integer" }, "REDIS_TIMEOUT": { "default": 0, "minimum": 0, "type": "integer" }, "REDIS_USER": { "type": "string" } }, "required": [ "ANALYZER_PROTO", "ANALYZER_ADDR", "ANALYZER_PORT", "ANALYZER_WORKERS", "ANALYZER_AUTH", "REDIS_ENABLE", "MMDB_DIR", "MMDB_FALLBACK", "MMDB_RELOAD_CRON", "IPSUM_ENABLE" ], "type": "object" }
MIT
en
ecmchow/ip-analyzer
a6fbf49e1739cb696dc9ef63f985ed7eb1d3e526
2022-08-11T08:34:04
Core/schema/iplist.json
26
2024-05-27T06:19:08.182159Z
{ "$id": "schema://ecmchow/ip-analyzer/iplist.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "iplist": { "items": { "$ref": "./ip.json#/properties/ip", "maximum": 100, "minimum": 1 }, "type": "array" } }, "required": [ "iplist" ], "type": "object" }
MIT
en
sketch-hq/SketchAPI
aa6b9ebf357c4c55e04bca410916bcc6f6ccbc7c
2020-07-06T16:41:13
docs/sketch-plugin-manifest-schema.json
841
2024-05-28T05:46:50.877785Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "submenu-schema": { "additionalProperties": false, "properties": { "items": { "description": "This is an array which lists the items to include in the menu.\n\nIt can contain items of three types:\n\n- a string giving the identifier of a command\n\n- a string \"-\" to add a separator line\n\n- an object describing a sub-menu (containing \u201ctitle\u201d and \u201citems\u201d)", "items": { "$ref": "#/definitions/submenu-schema" }, "minItems": 1, "type": "array" }, "title": { "description": "A string specifying the title to use for the submenu.", "type": "string" } }, "required": [ "title", "items" ], "type": [ "string", "object" ] } }, "description": "The manifest is a JSON file containing metadata about the Plugin, its commands and resources.\n\nIt describes such things as the full name, a description, and the name of the author. It lists the names of any commands defined by the Plugin, and tells Sketch what to call the corresponding menu items and which menus to put them in.", "properties": { "$schema": { "type": "string" }, "appcast": { "description": "A string specifying a URL to the appcast file. The appcast file contains information about updates to the plugin, like the versions of available updates and where the updates can be downloaded from. Sketch downloads this file to determine if there are plugin updates available.", "type": "string" }, "author": { "description": "A string specifying the author of the Plugin.", "type": "string" }, "authorEmail": { "description": "An optional string specifying how to contact the Plugin author by email.", "format": "email", "type": "string" }, "bundleVersion": { "const": 1, "description": "The version for the layout of the bundle an metadata. If excluded it is assumed the value is 1." }, "commands": { "description": "A Plugin defines one or more commands for the user to execute.", "items": { "properties": { "darkIcon": { "description": "The relative path for the script that implements this command.", "type": "string" }, "description": { "description": "The relative path for the script that implements this command.", "type": "string" }, "handler": { "description": "The name of the function with the script to call this command. If unspecified the command is expected to be `export default`.", "type": "string" }, "handlers": { "additionalProperties": false, "description": "Specify the mapping between actions and function names.", "properties": { "actions": { "description": "The actions that will trigger the command. Each property name should be the name of an Action while the value should be the name of the function to call.", "propertyNames": { "$comment": "TODO: we could create an enum with the list of actions here", "pattern": "^(\\*|[A-Za-z]+(\\.?begin|\\.?finish)?)$" }, "type": "object" }, "run": { "description": "The name of the function to when command is called. If unspecified the command is expected to be `export default`.", "type": "string" }, "setUp": { "description": "The name of the function to call before the command is called (not to be confused with the `Startup` action).", "type": "string" }, "tearDown": { "description": "The name of the function to call after the command has finished to run (not to be confused with the `Shutdown` action).", "type": "string" } }, "type": "object" }, "icon": { "description": "The relative path for the script that implements this command.", "type": "string" }, "identifier": { "description": "A string specifying a unique identifier for the command within the Plugin bundle. This is used to consistently map commands to actions, irrespective of command name changes.", "type": "string" }, "name": { "description": "The display name for the command. This value is used in the Plugins menu.", "type": "string" }, "script": { "description": "The relative path for the script that implements this command.", "type": "string" }, "shortcut": { "description": "An optional string specifying a default keyboard shortcut for this command, for example: `ctrl t`, `cmd t`, `ctrl shift t`.\n\nNote that if Sketch is already using the shortcut, it won't have any effect.", "examples": [ "ctrl t", "cmd t", "ctrl shift t" ], "type": "string" } }, "required": [ "identifier", "script" ], "type": "object" }, "minItems": 1, "type": "array" }, "compatibleVersion": { "description": "A string specifying the version of Sketch in which the author has tested the Plugin, for example 3, 3.1, 3.2.2.\n\nAt the moment (Sketch 3.4) this is an optional key, but we could use it as a filtering option in the Plugins page at some point.", "type": "string" }, "darkIcon": { "description": "The resource path to the icon for this Plugin shown in the dark mode of Runner.", "type": "string" }, "description": { "description": "A string describing what this Plugin does.", "type": "string" }, "disableCocoaScriptPreprocessor": { "description": "This is an advanced setting, and it defaults to `false`. When set to `true`, it will disable CocoaScript\u2019s own preprocessor. This way, you\u2019ll be able to use build systems like skpm or ES6 module syntax to develop your plugins.\n\nSetting this option to `true` does the following:\n - disables `@import` support, you\u2019ll have to take care of your imports manually\n - disables bracket syntax (i.e: `[obj msg:]`), you\u2019ll have to use dot-syntax only\n\nNote that if you use skpm, it will default to `true` instead.", "type": "boolean" }, "homepage": { "description": "An optional string specifying an online resource for the user to find out more information or provide feedback for the Plugin.", "type": "string" }, "icon": { "description": "The resource path to the icon for this Plugin. This is used in the Plugin list and when showing an alert from your plugin. Must be a 128x128 PNG.", "type": "string" }, "identifier": { "description": "A string specifying a unique identifier for the Plugin.\n\nReverse-domain syntax is strongly encouraged, for example `com.example.sketch.shape-plugins`.\n\nSketch uses this string internally to track the Plugin, store settings for it, etc.", "examples": [ "com.example.sketch.shape-plugins" ], "type": "string" }, "maxCompatibleVersion": { "description": "A string specifying the version of Sketch in which the author has tested the Plugin, for example 3, 3.1, 3.2.2.\n\nAt the moment (Sketch 3.4) this is an optional key, but we could use it as a filtering option in the Plugins page at some point.", "type": "string" }, "menu": { "additionalProperties": false, "description": "When it loads a Plugin, Sketch creates a menu for it, and populates that menu using information from the \u201cmenu\u201d object in the manifest file.", "properties": { "isRoot": { "description": "By default, the menu items listed will appear in a menu with the name specified by the `title` key.\n\nIf the `isRoot` key is specified, with a value of `true`, the items will instead be inserted at the root level of the Plugins menu, rather than in a subfolder. In this case, the `title` key will be ignored.", "type": "boolean" }, "items": { "description": "This is an array which lists the items to include in the menu.\n\nIt can contain items of three types:\n\n- a string giving the identifier of a command\n\n- a string \"-\" to add a separator line\n\n- an object describing a sub-menu (containing \u201ctitle\u201d and \u201citems\u201d)", "items": { "$ref": "#/definitions/submenu-schema" }, "minItems": 1, "type": "array" }, "title": { "description": "A string specifying the title to use for the menu. Default to the plugin's name", "type": "string" } }, "required": [ "items" ], "type": "object" }, "name": { "description": "The name for this Plugin. This is used by default as the name of the sub-menu in which the Plugin\u2019s menu commands will appear.", "type": "string" }, "scope": { "description": "If present, and set to `application`, enables the plugin to be run when there are no documents open in Sketch.", "enum": [ "application", "document" ] }, "suppliesData": { "description": "Indicates if the plugin supplies some data. If `true`, it results in the data icon showing in the plugin preferences for the plugin.", "type": "boolean" }, "version": { "description": "A string specifying the semantic version for the Plugin, for example 1.0, 1.1.1.", "type": "string" } }, "required": [ "commands", "icon" ], "title": "Sketch Plugin Manifest", "type": "object" }
MIT
en
sketch-hq/SketchAPI
d20d80c627d677054a73a5382001c29025007fe7
2019-04-24T17:05:17
docs/sketch-plugin-manifest-schema.json
841
2024-05-28T05:46:50.877785Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "additionalProperties": false, "definitions": { "submenu-schema": { "additionalProperties": false, "properties": { "items": { "description": "This is an array which lists the items to include in the menu.\n\nIt can contain items of three types:\n\n- a string giving the identifier of a command\n\n- a string \"-\" to add a separator line\n\n- an object describing a sub-menu (containing \u201ctitle\u201d and \u201citems\u201d)", "items": { "$ref": "#/definitions/submenu-schema" }, "minItems": 1, "type": "array" }, "title": { "description": "A string specifying the title to use for the submenu.", "type": "string" } }, "required": [ "title", "items" ], "type": [ "string", "object" ] } }, "description": "The manifest is a JSON file containing metadata about the Plugin, its commands and resources.\n\nIt describes such things as the full name, a description, and the name of the author. It lists the names of any commands defined by the Plugin, and tells Sketch what to call the corresponding menu items and which menus to put them in.", "properties": { "$schema": { "type": "string" }, "appcast": { "description": "A string specifying a URL to the appcast file. The appcast file contains information about updates to the plugin, like the versions of available updates and where the updates can be downloaded from. Sketch downloads this file to determine if there are plugin updates available.", "type": "string" }, "author": { "description": "A string specifying the author of the Plugin.", "type": "string" }, "authorEmail": { "description": "An optional string specifying how to contact the Plugin author by email.", "format": "email", "type": "string" }, "bundleVersion": { "const": 1, "description": "The version for the layout of the bundle an metadata. If excluded it is assumed the value is 1." }, "commands": { "description": "A Plugin defines one or more commands for the user to execute.", "items": { "properties": { "darkIcon": { "description": "The relative path for the script that implements this command.", "type": "string" }, "description": { "description": "The relative path for the script that implements this command.", "type": "string" }, "handler": { "description": "The name of the function with the script to call this command. If unspecified the command is expected to be `export default`.", "type": "string" }, "handlers": { "additionalProperties": false, "description": "Specify the mapping between actions and function names.", "properties": { "actions": { "description": "The actions that will trigger the command. Each property name should be the name of an Action while the value should be the name of the function to call.", "propertyNames": { "$comment": "TODO: we could create an enum with the list of actions here", "pattern": "^(\\*|[A-Za-z]+(\\.?begin|\\.?finish)?)$" }, "type": "object" }, "run": { "description": "The name of the function to when command is called. If unspecified the command is expected to be `export default`.", "type": "string" }, "setUp": { "description": "The name of the function to call before the command is called (not to be confused with the `Startup` action).", "type": "string" }, "tearDown": { "description": "The name of the function to call after the command has finished to run (not to be confused with the `Shutdown` action).", "type": "string" } }, "type": "object" }, "icon": { "description": "The relative path for the script that implements this command.", "type": "string" }, "identifier": { "description": "A string specifying a unique identifier for the command within the Plugin bundle. This is used to consistently map commands to actions, irrespective of command name changes.", "type": "string" }, "name": { "description": "The display name for the command. This value is used in the Plugins menu.", "type": "string" }, "script": { "description": "The relative path for the script that implements this command.", "type": "string" }, "shortcut": { "description": "An optional string specifying a default keyboard shortcut for this command, for example: `ctrl t`, `cmd t`, `ctrl shift t`.\n\nNote that if Sketch is already using the shortcut, it won't have any effect.", "examples": [ "ctrl t", "cmd t", "ctrl shift t" ], "type": "string" } }, "required": [ "identifier", "script" ], "type": "object" }, "minItems": 1, "type": "array" }, "compatibleVersion": { "description": "A string specifying the version of Sketch in which the author has tested the Plugin, for example 3, 3.1, 3.2.2.\n\nAt the moment (Sketch 3.4) this is an optional key, but we could use it as a filtering option in the Plugins page at some point.", "type": "string" }, "darkIcon": { "description": "The resource path to the icon for this Plugin shown in the dark mode of Runner.", "type": "string" }, "description": { "description": "A string describing what this Plugin does.", "type": "string" }, "disableCocoaScriptPreprocessor": { "description": "This is an advanced setting, and it defaults to `false`. When set to `true`, it will disable CocoaScript\u2019s own preprocessor. This way, you\u2019ll be able to use build systems like skpm or ES6 module syntax to develop your plugins.\n\nSetting this option to `true` does the following:\n - disables `@import` support, you\u2019ll have to take care of your imports manually\n - disables bracket syntax (i.e: `[obj msg:]`), you\u2019ll have to use dot-syntax only\n\nNote that if you use skpm, it will default to `true` instead.", "type": "boolean" }, "homepage": { "description": "An optional string specifying an online resource for the user to find out more information or provide feedback for the Plugin.", "type": "string" }, "icon": { "description": "The resource path to the icon for this Plugin. This is used in the Plugin list and when showing an alert from your plugin. Must be a 128x128 PNG.", "type": "string" }, "identifier": { "description": "A string specifying a unique identifier for the Plugin.\n\nReverse-domain syntax is strongly encouraged, for example `com.example.sketch.shape-plugins`.\n\nSketch uses this string internally to track the Plugin, store settings for it, etc.", "examples": [ "com.example.sketch.shape-plugins" ], "type": "string" }, "maxCompatibleVersion": { "description": "A string specifying the version of Sketch in which the author has tested the Plugin, for example 3, 3.1, 3.2.2.\n\nAt the moment (Sketch 3.4) this is an optional key, but we could use it as a filtering option in the Plugins page at some point.", "type": "string" }, "menu": { "additionalProperties": false, "description": "When it loads a Plugin, Sketch creates a menu for it, and populates that menu using information from the \u201cmenu\u201d object in the manifest file.", "properties": { "isRoot": { "description": "By default, the menu items listed will appear in a menu with the name specified by the `title` key.\n\nIf the `isRoot` key is specified, with a value of `true`, the items will instead be inserted at the root level of the Plugins menu, rather than in a subfolder. In this case, the `title` key will be ignored.", "type": "boolean" }, "items": { "description": "This is an array which lists the items to include in the menu.\n\nIt can contain items of three types:\n\n- a string giving the identifier of a command\n\n- a string \"-\" to add a separator line\n\n- an object describing a sub-menu (containing \u201ctitle\u201d and \u201citems\u201d)", "items": { "$ref": "#/definitions/submenu-schema" }, "minItems": 1, "type": "array" }, "title": { "description": "A string specifying the title to use for the menu. Default to the plugin's name", "type": "string" } }, "required": [ "items" ], "type": "object" }, "name": { "description": "The name for this Plugin. This is used by default as the name of the sub-menu in which the Plugin\u2019s menu commands will appear.", "type": "string" }, "scope": { "description": "If present, and set to `application`, enables the plugin to be run when there are no documents open in Sketch.", "enum": [ "application", "document" ] }, "suppliesData": { "description": "Indicates if the plugin supplies some data. If `true`, it results in the data icon showing in the plugin preferences for the plugin.", "type": "boolean" }, "version": { "description": "A string specifying the semantic version for the Plugin, for example 1.0, 1.1.1.", "type": "string" } }, "required": [ "commands", "icon" ], "title": "Sketch Plugin Manifest", "type": "object" }
MIT
en
metallb/metallb
08bf0c4c223e5a2861a354eaf78653715ebd81e1
2022-08-03T16:00:43
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
48cb1c3b8a97487a825f24860ecbf5c2b3919817
2021-09-27T18:34:40
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
69085735822c359ff531050a541ea1259da20a9e
2022-08-03T13:22:31
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
6f6765290a02006bd14e03cffe5a0b10d31241fe
2021-09-27T20:21:39
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
6089cfd5cf3397baf4d9ae075c938d145c4724d2
2023-11-14T17:13:56
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindAddrOverride": { "type": "string" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "securityContext": { "type": "object" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
7be60cc134414fa45d8cdd9e8533a2bc1c3ac713
2022-09-22T09:19:17
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
9ff85804aeca4626821c95d20526649151a17ed5
2021-07-06T18:34:15
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
5c959a3646ee00dfa396db29f6c3cabd9c508d76
2022-07-11T10:01:38
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
df999d51cf3c624bb20b787c8a81b9490e595a21
2022-11-25T08:31:44
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
104a7cf3ee30494c053aae99e64c6ed9fb890bed
2022-06-10T12:01:57
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
85f3f0c79d3bde54509148c8f09894f016623991
2022-08-30T11:33:14
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
bdb370a351ee4447f30153d104877c997e1947b7
2022-08-03T13:22:31
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
5d236989e61683daf1eaad00777b81ce7dd98c5d
2021-07-14T17:55:35
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
211763b547599cec2e4817087d110393c9e141f7
2021-12-03T08:38:21
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
e54fb38e280787237ce03ba2f86e8b77abe1322c
2022-10-06T12:09:05
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
7aa51fbf62a1fd8f8034a863bd2ffa8a2eb4c25a
2022-10-06T14:13:16
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
a04a3f49569049b66f165277241a27de33b5b934
2022-08-01T14:00:21
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
2d65c5554cedb25f15cfd1764bb7277d598bd745
2021-04-29T18:01:43
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "type": "string" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
f9bce39ce4bce1463a6c5f2b2e3f9edd9c34f2d3
2022-05-02T20:17:32
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] }, "webhooks": { "description": "webhooks configuration", "properties": { "enable": { "description": "Enables webhooks", "type": "boolean" } }, "type": "object" } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
beaa91f67c38717162d59ac2ffcef9f31b6437da
2022-03-09T11:44:12
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "logLevel": { "enum": [ "informational", "warning", "errors", "debugging" ], "type": "string" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
1fc030d4541eb5299025dbd5e8b8773e1b7b6570
2022-05-30T12:29:56
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
b5c1865324d0aeac1bb830e1a599b42944732f5c
2021-06-17T14:09:32
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "type": "string" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
ac85098b2d52994d57769bd6115d393e43044041
2023-10-16T14:07:58
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindAddrOverride": { "type": "string" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "securityContext": { "type": "object" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
6dfb692bc1c24748b3f0d43d7c7fc7e89abc0583
2022-04-05T11:52:08
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "logLevel": { "enum": [ "informational", "warning", "errors", "debugging" ], "type": "string" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] }, "webhooks": { "description": "webhooks configuration", "properties": { "enable": { "description": "Enables webhooks", "type": "boolean" } }, "type": "object" } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
384af991dad65bee82f87ac97d581aa63f1285df
2023-10-16T09:44:38
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "securityContext": { "type": "object" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
06da676fa192967190839464c58e62cae175105e
2021-12-14T16:06:49
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller" } ] }, "existingConfigMap": { "description": "Existing config map to use for metallb configs", "type": "string" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "logLevel": { "enum": [ "informational", "warning", "errors", "debugging" ], "type": "string" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
ebc875a598fbcb8673a4647f0f55986804b190c2
2023-03-20T21:43:03
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
d565e134dc66aa5bb19fc2874e818904a56ce410
2024-02-20T13:56:20
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "ignoreExcludeLB": { "type": "boolean" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindAddrOverride": { "type": "string" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "securityContext": { "type": "object" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
4a8dc6d7c8e2c32408be555b766b5a1e55ee944c
2023-11-14T17:13:56
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindAddrOverride": { "type": "string" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "securityContext": { "type": "object" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb
6c4cc3610d30c31a0567c1f8d74ad6378e24c5a0
2022-06-16T10:33:18
charts/metallb/values.schema.json
6,706
2024-05-28T05:57:23.073304Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "serviceAccount": { "type": "string" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "psp": { "description": "PSP configuration", "properties": { "create": { "description": "Enable PSP", "type": "boolean" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" } }, "required": [ "enabled" ], "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindPort": { "type": "integer" } }, "type": "object" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb-operator
76dfbecfaa28ea660a6ec8f4cfed7a2f1cf7aedb
2024-02-27T09:32:03
bindata/deployment/helm/metallb/values.schema.json
82
2024-05-28T06:14:18.694773Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "ignoreExcludeLB": { "type": "boolean" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindAddrOverride": { "type": "string" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "securityContext": { "type": "object" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb-operator
c9ad0385abdc5191427f8e3346dfb4e05ab1b5ec
2023-12-18T11:45:19
bindata/deployment/helm/metallb/values.schema.json
82
2024-05-28T06:14:18.694773Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "configInLine": { "description": "MetalLB configuration", "type": "object" }, "controller": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Controller", "properties": { "command": { "type": "string" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "loadBalancerClass": { "type": "string" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "description": "Prometheus monitoring config", "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "podMonitor": { "description": "Prometheus Operator PodMonitors", "properties": { "additionalMonitors": { "type": "object" }, "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" }, "prometheusRule": { "description": "Prometheus Operator alertmanager alerts", "properties": { "additionalMonitors": { "type": "object" }, "addressPoolExhausted": { "$ref": "#/definitions/prometheusAlert" }, "addressPoolUsage": { "properties": { "enabled": { "type": "boolean" }, "thresholds": { "items": { "properties": { "labels": { "additionalProperties": { "type": "string" }, "type": "object" }, "percent": { "maximum": 100, "minimum": 0, "type": "integer" } }, "required": [ "percent" ], "type": "object" }, "type": "array" } }, "required": [ "enabled" ], "type": "object" }, "bgpSessionDown": { "$ref": "#/definitions/prometheusAlert" }, "configNotLoaded": { "$ref": "#/definitions/prometheusAlert" }, "enabled": { "type": "boolean" }, "extraAlerts": { "items": { "type": "object" }, "type": "array" }, "staleConfig": { "$ref": "#/definitions/prometheusAlert" } }, "required": [ "enabled", "staleConfig", "configNotLoaded", "addressPoolExhausted", "addressPoolUsage", "bgpSessionDown" ], "type": "object" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "required": [ "podMonitor", "prometheusRule" ], "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" }, "speaker": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "MetalLB Speaker", "properties": { "command": { "type": "string" }, "excludeInterfaces": { "properties": { "enabled": { "type": "boolean" } }, "type": "object" }, "extraContainers": { "items": { "type": "object" }, "type": "array" }, "frr": { "description": "Install FRR container in speaker deployment", "properties": { "enabled": { "type": "boolean" }, "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "memberlist": { "properties": { "enabled": { "type": "boolean" }, "mlBindAddrOverride": { "type": "string" }, "mlBindPort": { "type": "integer" }, "mlSecretKeyPath": { "type": "string" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "securityContext": { "type": "object" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] } }, "required": [ "controller", "speaker" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/metallb-operator
c9ad0385abdc5191427f8e3346dfb4e05ab1b5ec
2023-12-18T11:45:19
bindata/deployment/helm/frr-k8s/values.schema.json
82
2024-05-28T06:14:18.694773Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "frrk8s": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "FRRk8s Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "description": "Prometheus monitoring config", "frrk8s": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "FRR-K8s controller", "properties": { "command": { "type": "string" }, "frr": { "description": "The FRR properties in the controller", "properties": { "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] }, "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" } }, "required": [ "frrk8s" ], "title": "Values", "type": "object" }
Apache-2.0
en
metallb/frr-k8s
c7cd218b249cfc548e8b7032c8936302252a807e
2023-09-04T14:26:39
charts/frr-k8s/values.schema.json
34
2024-05-27T10:16:38.985626Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "definitions": { "component": { "properties": { "affinity": { "type": "object" }, "enabled": { "type": "boolean" }, "image": { "properties": { "pullPolicy": { "anyOf": [ { "type": "null" }, { "enum": [ "Always", "IfNotPresent", "Never" ], "type": "string" } ] }, "repository": { "type": "string" }, "tag": { "anyOf": [ { "type": "string" }, { "type": "null" } ] } }, "type": "object" }, "livenessProbe": { "$ref": "#/definitions/probe" }, "logLevel": { "enum": [ "all", "debug", "info", "warn", "error", "none" ], "type": "string" }, "nodeSelector": { "type": "object" }, "podAnnotations": { "type": "object" }, "priorityClassName": { "type": "string" }, "readinessProbe": { "$ref": "#/definitions/probe" }, "resources": { "type": "object" }, "runtimeClassName": { "type": "string" }, "serviceAccount": { "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "tolerations": { "items": { "type": "object" }, "type": "array" } }, "required": [ "image", "serviceAccount" ], "type": "object" }, "probe": { "properties": { "enabled": { "type": "boolean" }, "failureThreshold": { "type": "integer" }, "initialDelaySeconds": { "type": "integer" }, "periodSeconds": { "type": "integer" }, "successThreshold": { "type": "integer" }, "timeoutSeconds": { "type": "integer" } }, "required": [ "failureThreshold", "initialDelaySeconds", "periodSeconds", "successThreshold", "timeoutSeconds" ], "type": "object" }, "prometheusAlert": { "properties": { "enabled": { "type": "boolean" }, "labels": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "enabled" ], "type": "object" } }, "properties": { "frrk8s": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "FRRk8s Controller", "properties": { "command": { "type": "string" }, "strategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" }, "webhookMode": { "type": "string" } }, "type": "object" } ] }, "fullNameOverride": { "description": "Override fully qualified app name", "type": "string" }, "imagePullSecrets": { "description": "Secrets used for pulling images", "items": { "additionalProperties": false, "properties": { "name": { "type": "string" } }, "required": [ "name" ], "type": "object" }, "type": "array" }, "nameOverride": { "description": "Override chart name", "type": "string" }, "prometheus": { "crds": { "description": "CRD configuration", "properties": { "enabled": { "description": "Enable CRDs", "type": "boolean" }, "validationFailurePolicy": { "description": "Failure policy to use with validating webhooks", "enum": [ "Ignore", "Fail" ], "type": "string" } }, "type": "object" }, "description": "Prometheus monitoring config", "frrk8s": { "allOf": [ { "$ref": "#/definitions/component" }, { "description": "FRR-K8s controller", "properties": { "command": { "type": "string" }, "frr": { "description": "The FRR properties in the controller", "properties": { "image": { "$ref": "#/definitions/component/properties/image" }, "metricsPort": { "type": "integer" }, "resources:": { "type": "object" }, "secureMetricsPort": { "type": "integer" } }, "required": [ "enabled" ], "type": "object" }, "frrMetrics": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "reloader": { "properties": { "resources": { "type": "object" } }, "type": "object" }, "runtimeClassName": { "type": "string" }, "secretName": { "type": "string" }, "tolerateMaster": { "type": "boolean" }, "updateStrategy": { "properties": { "type": { "type": "string" } }, "required": [ "type" ], "type": "object" } }, "required": [ "tolerateMaster" ], "type": "object" } ] }, "properties": { "metricsPort": { "type": "integer" }, "namespace": { "type": "string" }, "rbacPrometheus": { "type": "boolean" }, "rbacProxy": { "description": "kube-rbac-proxy configuration", "properties": { "repository": { "type": "string" }, "tag": { "type": "string" } }, "type": "object" }, "scrapeAnnotations": { "type": "boolean" }, "secureMetricsPort": { "type": "integer" }, "serviceAccount": { "type": "string" }, "serviceMonitor": { "description": "Prometheus Operator ServiceMonitors", "properties": { "enabled": { "type": "boolean" }, "interval": { "anyOf": [ { "type": "integer" }, { "type": "null" } ] }, "jobLabel": { "type": "string" }, "metricRelabelings": { "items": { "type": "object" }, "type": "array" }, "relabelings": { "items": { "type": "object" }, "type": "array" } }, "type": "object" } }, "type": "object" }, "rbac": { "description": "RBAC configuration", "properties": { "create": { "description": "Enable RBAC", "type": "boolean" } }, "type": "object" } }, "required": [ "frrk8s" ], "title": "Values", "type": "object" }
Apache-2.0
en
werf/kubedog
0f41256c6a63d3a3d490e64e21e34c734d59c2c3
2023-12-18T20:28:51
pkg/tracker/generic/contrib_resource_status_rules.schema.json
619
2024-05-29T09:20:46.440817Z
{ "$id": "http://werf.io/contrib_resource_status_rules.schema.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "rules": { "items": { "dependencies": { "resourceGroup": [ "resourceKind" ], "resourceKind": [ "resourceGroup" ] }, "properties": { "conditions": { "properties": { "failed": { "items": { "minLength": 1, "type": "string" }, "type": "array" }, "progressing": { "items": { "minLength": 1, "type": "string" }, "type": "array" }, "ready": { "items": { "minLength": 1, "type": "string" }, "type": "array" } }, "required": [ "ready", "progressing" ], "type": "object" }, "humanJsonPath": { "minLength": 1, "type": "string" }, "jsonPath": { "minLength": 1, "type": "string" }, "resourceGroup": { "minLength": 1, "type": "string" }, "resourceKind": { "minLength": 1, "type": "string" } }, "required": [ "jsonPath", "humanJsonPath", "conditions" ], "type": "object" }, "type": "array" } }, "required": [ "rules" ], "title": "Contrib resource status rules schema", "type": "object" }
Apache-2.0
en
vezel-dev/celerity
2766d4d9670e26e0748a452c6d1a24629705c50c
2023-04-01T22:26:23
doc/tooling/celerity.schema.json
7
2024-05-27T05:32:22.807247Z
{ "$id": "https://docs.vezel.dev/tooling/celerity.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "kind": { "default": "program", "enum": [ "program", "library" ], "type": "string" }, "license": { "type": "string" }, "lints": { "patternProperties": { "^[a-z]+(-[a-z]+)*$": { "oneOf": [ { "type": "null" }, { "enum": [ "none", "warning", "error" ], "type": "string" } ] } }, "type": "object" }, "name": { "type": "string" }, "path": { "default": "src", "type": "string" }, "paths": { "patternProperties": { "^[A-Z][0-9a-zA-Z]*(::[A-Z][0-9a-zA-Z]*)*$": { "type": "string" } }, "type": "object" }, "version": { "default": "0.0.0", "type": "string" } }, "required": [ "name" ], "title": "Celerity Project Configuration", "type": "object" }
0BSD
en
cloudposse/atmos
461803527c15db99489cf001e75e52b79036657d
2024-01-09T19:48:51
website/static/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
34ba0f47b5d3d998c091c1e0283527530344ac78
2024-01-30T04:07:35
website/static/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
34ba0f47b5d3d998c091c1e0283527530344ac78
2024-01-30T04:07:35
examples/quick-start/stacks/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
1d2699a3f528c3ec83815bafc9b7777b9c563eee
2024-04-14T03:08:42
examples/quick-start/stacks/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "cloud": { "additionalProperties": true, "type": "object" }, "gcs": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "templates": { "$ref": "#/definitions/templates" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "templates": { "additionalProperties": true, "description": "Templates section", "title": "templates", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
461803527c15db99489cf001e75e52b79036657d
2024-01-09T19:48:51
examples/quick-start/stacks/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
97e9f28badc17cef251f501da0b240d72cb2c232
2024-02-09T00:20:39
website/static/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
2b85f6f2f692a9e9e8a0bd13e990d6054c9f1635
2024-04-30T16:54:14
examples/quick-start/stacks/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "cloud": { "additionalProperties": true, "type": "object" }, "gcs": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "local", "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "local", "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "templates": { "$ref": "#/definitions/templates" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "templates": { "additionalProperties": true, "description": "Templates section", "title": "templates", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
1d2699a3f528c3ec83815bafc9b7777b9c563eee
2024-04-14T03:08:42
website/static/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "cloud": { "additionalProperties": true, "type": "object" }, "gcs": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "templates": { "$ref": "#/definitions/templates" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "templates": { "additionalProperties": true, "description": "Templates section", "title": "templates", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
93fddf0a0e34d8517f0c96792e40823f8f0e11f9
2024-04-02T19:17:44
examples/quick-start/stacks/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "cloud": { "additionalProperties": true, "type": "object" }, "gcs": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
97e9f28badc17cef251f501da0b240d72cb2c232
2024-02-09T00:20:39
examples/quick-start/stacks/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
e4136fa0302bd0121490f98c4b6ce41e9216a30b
2024-03-04T22:23:39
examples/quick-start/stacks/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
e4136fa0302bd0121490f98c4b6ce41e9216a30b
2024-03-04T22:23:39
website/static/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
93fddf0a0e34d8517f0c96792e40823f8f0e11f9
2024-04-02T19:17:44
website/static/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "cloud": { "additionalProperties": true, "type": "object" }, "gcs": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
cloudposse/atmos
2b85f6f2f692a9e9e8a0bd13e990d6054c9f1635
2024-04-30T16:54:14
website/static/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json
601
2024-05-28T03:56:49.705849Z
{ "$id": "https://json.schemastore.org/atmos-manifest.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": true, "definitions": { "atlantis": { "additionalProperties": false, "description": "Atlantis section", "properties": { "config_template": { "additionalProperties": true, "type": "object" }, "config_template_name": { "type": "string" }, "project_template": { "additionalProperties": true, "type": "object" }, "project_template_name": { "type": "string" }, "workflow_templates": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "atlantis", "type": "object" }, "backend": { "$ref": "#/definitions/backend_manifest", "title": "backend" }, "backend_manifest": { "additionalProperties": false, "description": "Backend manifest", "properties": { "azurerm": { "additionalProperties": true, "type": "object" }, "cloud": { "additionalProperties": true, "type": "object" }, "gcs": { "additionalProperties": true, "type": "object" }, "remote": { "additionalProperties": true, "type": "object" }, "s3": { "additionalProperties": false, "properties": { "acl": { "type": "string" }, "bucket": { "type": "string" }, "dynamodb_table": { "type": "string" }, "encrypt": { "type": "boolean" }, "key": { "type": "string" }, "profile": { "type": [ "string", "null" ] }, "region": { "type": "string" }, "role_arn": { "type": [ "string", "null" ] }, "workspace_key_prefix": { "type": "string" } }, "type": "object" }, "static": { "additionalProperties": true, "type": "object" }, "vault": { "additionalProperties": true, "type": "object" } }, "required": [], "title": "backend", "type": "object" }, "backend_type": { "description": "Backend type", "enum": [ "local", "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "backend_type", "type": "string" }, "command": { "description": "Command to execute", "title": "command", "type": "string" }, "component": { "description": "Component section", "title": "component", "type": "string" }, "components": { "additionalProperties": false, "description": "Components section", "properties": { "helmfile": { "$ref": "#/definitions/helmfile_components" }, "terraform": { "$ref": "#/definitions/terraform_components" } }, "required": [], "title": "components", "type": "object" }, "depends_on": { "additionalProperties": false, "description": "Depends_on section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/depends_on_manifest" } }, "title": "depends_on", "type": "object" }, "depends_on_manifest": { "additionalProperties": false, "description": "Depends_on manifest", "oneOf": [ { "required": [ "component" ] }, { "required": [ "file" ] }, { "required": [ "folder" ] } ], "properties": { "component": { "type": "string" }, "environment": { "type": "string" }, "file": { "type": "string" }, "folder": { "type": "string" }, "namespace": { "type": "string" }, "stage": { "type": "string" }, "tenant": { "type": "string" } }, "title": "depends_on_manifest", "type": "object" }, "env": { "additionalProperties": true, "description": "Env section", "required": [], "title": "env", "type": "object" }, "helmfile": { "additionalProperties": false, "description": "Helmfile section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile", "type": "object" }, "helmfile_component_manifest": { "additionalProperties": false, "description": "Helmfile component manifest", "properties": { "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "helmfile_component_manifest", "type": "object" }, "helmfile_components": { "additionalProperties": false, "description": "Helmfile components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/helmfile_component_manifest" } }, "title": "helmfile_components", "type": "object" }, "import": { "description": "Import section", "items": { "oneOf": [ { "type": "string" }, { "additionalProperties": false, "properties": { "context": { "additionalProperties": true, "type": "object" }, "ignore_missing_template_values": { "type": "boolean" }, "path": { "type": "string" }, "skip_if_missing": { "type": "boolean" }, "skip_templates_processing": { "type": "boolean" } }, "required": [ "path" ], "type": "object" } ] }, "type": "array" }, "metadata": { "additionalProperties": false, "description": "Metadata section", "properties": { "component": { "type": "string" }, "custom": { "additionalProperties": true, "description": "Custom configuration per component, not inherited by derived components", "title": "custom", "type": "object" }, "inherits": { "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "terraform_workspace": { "type": "string" }, "terraform_workspace_pattern": { "type": "string" }, "type": { "enum": [ "abstract", "real" ], "type": "string" } }, "required": [], "title": "metadata", "type": "object" }, "overrides": { "additionalProperties": false, "description": "Overrides section", "properties": { "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "providers": { "$ref": "#/definitions/providers" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "overrides", "type": "object" }, "providers": { "additionalProperties": true, "description": "Providers section", "title": "providers", "type": "object" }, "remote_state_backend": { "$ref": "#/definitions/backend_manifest", "title": "remote_state_backend" }, "remote_state_backend_type": { "description": "Remote state backend type", "enum": [ "local", "s3", "remote", "vault", "static", "azurerm", "gcs", "cloud" ], "title": "remote_state_backend_type", "type": "string" }, "settings": { "additionalProperties": true, "description": "Settings section", "properties": { "atlantis": { "$ref": "#/definitions/atlantis" }, "depends_on": { "$ref": "#/definitions/depends_on" }, "spacelift": { "$ref": "#/definitions/spacelift" }, "templates": { "$ref": "#/definitions/templates" }, "validation": { "$ref": "#/definitions/validation" } }, "required": [], "title": "settings", "type": "object" }, "spacelift": { "additionalProperties": true, "description": "Spacelift section", "properties": { "autodeploy": { "type": "boolean" }, "protect_from_deletion": { "type": "boolean" }, "stack_destructor_enabled": { "type": "boolean" }, "terraform_version": { "anyOf": [ { "type": "number" }, { "type": "string" } ] }, "workspace_enabled": { "type": "boolean" } }, "required": [], "title": "spacelift", "type": "object" }, "templates": { "additionalProperties": true, "description": "Templates section", "title": "templates", "type": "object" }, "terraform": { "additionalProperties": false, "description": "Terraform section", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "env": { "$ref": "#/definitions/env" }, "overrides": { "$ref": "#/definitions/overrides" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform", "type": "object" }, "terraform_component_manifest": { "additionalProperties": false, "description": "Terraform component manifest", "properties": { "backend": { "$ref": "#/definitions/backend" }, "backend_type": { "$ref": "#/definitions/backend_type" }, "command": { "$ref": "#/definitions/command" }, "component": { "$ref": "#/definitions/component" }, "env": { "$ref": "#/definitions/env" }, "metadata": { "$ref": "#/definitions/metadata" }, "providers": { "$ref": "#/definitions/providers" }, "remote_state_backend": { "$ref": "#/definitions/remote_state_backend" }, "remote_state_backend_type": { "$ref": "#/definitions/remote_state_backend_type" }, "settings": { "$ref": "#/definitions/settings" }, "vars": { "$ref": "#/definitions/vars" } }, "required": [], "title": "terraform_component_manifest", "type": "object" }, "terraform_components": { "additionalProperties": false, "description": "Terraform components section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/terraform_component_manifest" } }, "title": "terraform_components", "type": "object" }, "validation": { "additionalProperties": false, "description": "Validation section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/validation_manifest" } }, "title": "validation", "type": "object" }, "validation_manifest": { "additionalProperties": false, "description": "Validation manifest", "properties": { "description": { "type": "string" }, "disabled": { "type": "boolean" }, "module_paths": { "description": "List of paths to validation modules", "items": { "type": "string" }, "type": "array", "uniqueItems": true }, "schema_path": { "type": "string" }, "schema_type": { "enum": [ "jsonschema", "opa" ], "type": "string" }, "timeout": { "minimum": 0, "type": "integer" } }, "required": [ "schema_type", "schema_path" ], "title": "validation_manifest", "type": "object" }, "vars": { "additionalProperties": true, "description": "Vars section", "title": "vars", "type": "object" }, "workflow_manifest": { "additionalProperties": false, "description": "Atmos workflow manifest", "properties": { "description": { "type": "string" }, "stack": { "type": "string" }, "steps": { "items": { "additionalProperties": false, "properties": { "command": { "type": "string" }, "name": { "type": "string" }, "stack": { "type": "string" }, "type": { "type": "string" } }, "required": [ "command" ], "type": "object" }, "type": "array" } }, "required": [ "steps" ], "title": "workflow_manifest", "type": "object" }, "workflows": { "additionalProperties": false, "description": "Workflows section", "patternProperties": { "^[/a-zA-Z0-9-_{}. ]+$": { "$ref": "#/definitions/workflow_manifest" } }, "properties": { "description": { "type": "string" }, "name": { "type": "string" } }, "title": "workflows", "type": "object" } }, "oneOf": [ { "required": [ "workflows" ] }, { "anyOf": [ { "additionalProperties": true, "not": { "required": [ "workflows" ] } }, { "required": [ "import" ] }, { "required": [ "terraform" ] }, { "required": [ "helmfile" ] }, { "required": [ "vars" ] }, { "required": [ "env" ] }, { "required": [ "settings" ] }, { "required": [ "components" ] }, { "required": [ "overrides" ] } ] } ], "properties": { "components": { "$ref": "#/definitions/components" }, "env": { "$ref": "#/definitions/env" }, "helmfile": { "$ref": "#/definitions/helmfile" }, "import": { "$ref": "#/definitions/import" }, "overrides": { "$ref": "#/definitions/overrides" }, "settings": { "$ref": "#/definitions/settings" }, "terraform": { "$ref": "#/definitions/terraform" }, "vars": { "$ref": "#/definitions/vars" }, "workflows": { "$ref": "#/definitions/workflows" } }, "title": "JSON Schema for Atmos Stack Manifest files. Version 1.0. https://atmos.tools", "type": "object" }
Apache-2.0
en
gageml/gage
e7ad7290f9c6ada7d0191d4df81a258a3f598548
2023-12-14T12:28:10
gage/userconfig.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$id": "https://gage.org/userconfig", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "repos": { "additionalProperties": false, "patternProperties": { ".+": { "oneOf": [ { "required": [ "type" ] }, { "required": [ "path" ] } ], "properties": { "path": { "title": "Local repository path", "type": "string" }, "type": { "title": "Repository type", "type": "string" } }, "title": "repository", "type": "object" } }, "title": "Gage repositories", "type": "object" } }, "title": "Gage ML User Config File", "type": "object" }
Apache-2.0
en
gageml/gage
5453db020cd3c111779fb635fdab61082102bd6c
2024-05-13T18:20:09
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "named-progress-spec": { "title": "Named progress spec", "type": "string" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { "^[^$]": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "listing": { "additionalProperties": false, "properties": { "description": { "items": { "minLength": 1, "type": "string" }, "type": "array" } }, "title": "Listing configuration", "type": "object" }, "output-summary": { "oneOf": [ { "type": "boolean" }, { "type": "string" } ], "title": "Output summary configuration" }, "progress": { "oneOf": [ { "$ref": "#/$defs/named-progress-spec" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/named-progress-spec" }, "run": { "$ref": "#/$defs/named-progress-spec" }, "stage-dependencies": { "$ref": "#/$defs/named-progress-spec" }, "stage-runtime": { "$ref": "#/$defs/named-progress-spec" }, "stage-sourcecode": { "$ref": "#/$defs/named-progress-spec" } }, "title": "Full progress spec", "type": "object" } ], "title": "Progress spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "properties": { "$runs-dir": { "title": "Run directory", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
5d5f61297804eadb64dffd8feb5b8d596174d85f
2024-05-29T13:24:42
gage/board.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "column": { "oneOf": [ { "additionalProperties": false, "oneOf": [ { "properties": { "field": { "$ref": "#/$defs/fieldRef" } }, "required": [ "field" ] }, { "properties": { "run-attr": { "title": "Run attribute field", "type": "string" } }, "required": [ "run-attr" ] }, { "properties": { "metric": { "title": "Summary metric field", "type": "string" } }, "required": [ "metric" ] }, { "properties": { "attribute": { "title": "Summary attribute field", "type": "string" } }, "required": [ "attribute" ] }, { "properties": { "config": { "title": "Config field", "type": "string" } }, "required": [ "config" ] }, { "properties": { "score": { "$ref": "#/$defs/score" } }, "required": [ "score" ] } ], "properties": { "agg": { "enum": [ false, "sum", "min", "max", "count", "avg", "first", "last" ], "title": "Default aggregation function for column values" }, "attribute": true, "config": true, "description": { "title": "Column description", "type": "string" }, "field": true, "filter": { "oneOf": [ { "title": "Column filter type", "type": "string" }, { "title": "Whether or not to filter", "type": "boolean" } ] }, "filter-search": { "title": "Whether search is available in filter", "type": "boolean" }, "filter-select-all": { "title": "Whether select all is available in filter", "type": "boolean" }, "flag-filter-label": { "title": "Filter label for flag column filters", "type": "string" }, "hide": { "title": "Flag to hide column", "type": "boolean" }, "label": { "title": "Column heading name", "type": "string" }, "links": { "items": { "properties": { "href": { "type": "string" }, "label": { "type": "string" }, "type": { "enum": [ "paper", "model", "dataset", "leaderboard", "code", "help", "website" ] } }, "required": [ "href" ], "type": "object" }, "title": "Column links", "type": "array" }, "metric": true, "pinned": { "enum": [ "left", "right" ], "title": "Whether to pin the column" }, "row-group": { "title": "Group rows by this column", "type": "boolean" }, "run-attr": true, "score": true, "sort": { "enum": [ "asc", "desc" ], "title": "Default column sort direction" }, "type": { "title": "Column data style", "type": "string" } }, "title": "Column definition", "type": "object" }, { "$ref": "#/$defs/fieldRef", "title": "Column field reference" } ] }, "fieldRef": { "oneOf": [ { "pattern": "^run-attr:.+$" }, { "pattern": "^metric:.+$" }, { "pattern": "^attribute:.+$" }, { "pattern": "^config:.+$" } ], "title": "Property field spec", "type": "string" }, "runSelect": { "additionalProperties": false, "properties": { "operation": { "type": "string" }, "status": { "oneOf": [ { "$ref": "#/$defs/runStatus" }, { "items": { "$ref": "#/$defs/runStatus" }, "type": "array" } ] } } }, "runStatus": { "enum": [ "completed", "terminated", "error", "running" ] }, "score": { "oneOf": [ { "additionalProperties": false, "properties": { "average": { "items": { "oneOf": [ { "$ref": "#/$defs/fieldRef" }, { "items": false, "prefixItems": [ { "$ref": "#/$defs/fieldRef" }, { "type": "number" } ], "type": "array" } ] }, "type": "array" } }, "required": [ "average" ], "type": "object" } ] } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "columns": { "items": { "$ref": "#/$defs/column" }, "title": "Board columns", "type": "array" }, "description": { "title": "Board description", "type": "string" }, "group-column": { "properties": { "label": { "title": "Group column heading name", "type": "string" } }, "title": "Group column config", "type": "object" }, "id": { "title": "Board ID", "type": "string" }, "name": { "title": "Board name", "type": "string" }, "run-select": { "$ref": "#/$defs/runSelect", "title": "Run select criteria" }, "title": { "title": "Board title", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
5d9d6b2a1f1fe46d2720c9e3b6bcc8b33849ffee
2024-05-26T20:26:58
gage/board.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "column": { "oneOf": [ { "additionalProperties": false, "oneOf": [ { "properties": { "field": { "$ref": "#/$defs/fieldRef" } }, "required": [ "field" ] }, { "properties": { "run-attr": { "title": "Run attribute field", "type": "string" } }, "required": [ "run-attr" ] }, { "properties": { "metric": { "title": "Summary metric field", "type": "string" } }, "required": [ "metric" ] }, { "properties": { "attribute": { "title": "Summary attribute field", "type": "string" } }, "required": [ "attribute" ] }, { "properties": { "config": { "title": "Config field", "type": "string" } }, "required": [ "config" ] } ], "properties": { "agg": { "enum": [ false, "sum", "min", "max", "count", "avg", "first", "last" ], "title": "Default aggregation function for column values" }, "attribute": true, "config": true, "description": { "title": "Column description", "type": "string" }, "field": true, "filter": { "oneOf": [ { "title": "Column filter type", "type": "string" }, { "title": "Whether or not to filter", "type": "boolean" } ] }, "filter-search": { "title": "Whether search is available in filter", "type": "boolean" }, "filter-select-all": { "title": "Whether select all is available in filter", "type": "boolean" }, "flag-filter-label": { "title": "Filter label for flag column filters", "type": "string" }, "hide": { "title": "Flag to hide column", "type": "boolean" }, "label": { "title": "Column label", "type": "string" }, "links": { "items": { "properties": { "href": { "type": "string" }, "label": { "type": "string" }, "type": { "enum": [ "paper", "model", "dataset", "leaderboard", "code", "help", "website" ] } }, "required": [ "href" ], "type": "object" }, "title": "Column links", "type": "array" }, "metric": true, "sort": { "enum": [ "asc", "desc" ], "title": "Default column sort direction" }, "type": { "title": "Column data style", "type": "string" } }, "title": "Column definition", "type": "object" }, { "$ref": "#/$defs/fieldRef", "title": "Column field reference" } ] }, "fieldRef": { "oneOf": [ { "pattern": "^run-attr:.+$" }, { "pattern": "^metric:.+$" }, { "pattern": "^attribute:.+$" }, { "pattern": "^config:.+$" } ], "title": "Property field spec", "type": "string" }, "runSelect": { "additionalProperties": false, "properties": { "operation": { "type": "string" }, "status": { "oneOf": [ { "$ref": "#/$defs/runStatus" }, { "items": { "$ref": "#/$defs/runStatus" }, "type": "array" } ] } } }, "runStatus": { "enum": [ "completed", "terminated", "error", "running" ] } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "columns": { "items": { "$ref": "#/$defs/column" }, "title": "Board columns", "type": "array" }, "description": { "title": "Board description", "type": "string" }, "id": { "title": "Board ID", "type": "string" }, "name": { "title": "Board name", "type": "string" }, "run-select": { "$ref": "#/$defs/runSelect", "title": "Run select criteria" }, "title": { "title": "Board title", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
3816f9ef228d8f029b31e53e65de3c5f751f8d43
2024-01-16T16:29:48
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "named-progress-spec": { "title": "Named progress spec", "type": "string" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { "^[^$]": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "progress": { "oneOf": [ { "$ref": "#/$defs/named-progress-spec" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/named-progress-spec" }, "run": { "$ref": "#/$defs/named-progress-spec" }, "stage-dependencies": { "$ref": "#/$defs/named-progress-spec" }, "stage-runtime": { "$ref": "#/$defs/named-progress-spec" }, "stage-sourcecode": { "$ref": "#/$defs/named-progress-spec" } }, "title": "Full progress spec", "type": "object" } ], "title": "Progress spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "properties": { "$runs-dir": { "title": "Run directory", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
87446128bc7fe8209219b4cc05f8adcdeecb63c3
2023-12-28T17:12:45
gage/summary.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "attribute": { "oneOf": [ { "$ref": "#/$defs/attribute-value" }, { "properties": { "label": { "title": "Attribute label", "type": "string" }, "value": { "$ref": "#/$defs/attribute-value" } }, "required": [ "value" ], "title": "Attribute object", "type": "object" } ], "title": "Attribute" }, "attribute-value": { "title": "Attribute value", "type": [ "string", "number", "boolean", "null" ] }, "attributes": { "patternProperties": { ".+": { "$ref": "#/$defs/attribute" } }, "title": "Attributes", "type": "object" }, "metric": { "oneOf": [ { "$ref": "#/$defs/metric-value" }, { "properties": { "label": { "title": "Metric label", "type": "string" }, "value": { "$ref": "#/$defs/metric-value" } }, "required": [ "value" ], "title": "Metric object", "type": "object" } ], "title": "Metric" }, "metric-value": { "title": "Metric value", "type": [ "number", "null" ] }, "metrics": { "patternProperties": { ".+": { "$ref": "#/$defs/metric" } }, "title": "Metrics", "type": "object" } }, "$id": "https://gageml.org/summary", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "attributes": { "oneOf": [ { "$ref": "#/$defs/attributes" }, { "items": { "$ref": "#/$defs/attributes" }, "type": "array" } ] }, "metrics": { "oneOf": [ { "$ref": "#/$defs/metrics" }, { "items": { "$ref": "#/$defs/metrics" }, "type": "array" } ] } }, "title": "Gage Run Summary", "type": "object" }
Apache-2.0
en
gageml/gage
3a5b8639d88921509b9a55aba38b7f30451ab26c
2024-05-22T02:12:01
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "named-progress-spec": { "title": "Named progress spec", "type": "string" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { "^[^$]": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "listing": { "additionalProperties": false, "properties": { "description": { "items": { "minLength": 1, "type": "string" }, "type": "array" } }, "title": "Listing configuration", "type": "object" }, "output-summary": { "oneOf": [ { "type": "boolean" }, { "type": "string" } ], "title": "Output summary configuration" }, "progress": { "oneOf": [ { "$ref": "#/$defs/named-progress-spec" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/named-progress-spec" }, "run": { "$ref": "#/$defs/named-progress-spec" }, "stage-dependencies": { "$ref": "#/$defs/named-progress-spec" }, "stage-runtime": { "$ref": "#/$defs/named-progress-spec" }, "stage-sourcecode": { "$ref": "#/$defs/named-progress-spec" } }, "title": "Full progress spec", "type": "object" } ], "title": "Progress spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" }, "version": { "oneOf": [ { "minLength": 1, "pattern": "^[^\\s]*$", "type": "string" }, { "type": "null" } ] } }, "title": "Operation definition", "type": "object" } }, "properties": { "$runs-dir": { "title": "Run directory", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
24944d4ed98ad052e88ad6daf0d8322b49d38297
2023-12-26T20:07:21
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gage.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { "^[^$]": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "properties": { "$runs-dir": { "title": "Run directory", "type": "string" } }, "title": "Gage ML Project File", "type": "object" }
Apache-2.0
en
gageml/gage
b9bc23390946cd4fe96f5a2c7fd74dd5bc7df1f1
2023-12-28T17:15:20
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { "^[^$]": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "properties": { "$runs-dir": { "title": "Run directory", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
2156034f6d44556c7060201c800c558d0a0ecce5
2024-05-26T21:11:11
gage/board.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "column": { "oneOf": [ { "additionalProperties": false, "oneOf": [ { "properties": { "field": { "$ref": "#/$defs/fieldRef" } }, "required": [ "field" ] }, { "properties": { "run-attr": { "title": "Run attribute field", "type": "string" } }, "required": [ "run-attr" ] }, { "properties": { "metric": { "title": "Summary metric field", "type": "string" } }, "required": [ "metric" ] }, { "properties": { "attribute": { "title": "Summary attribute field", "type": "string" } }, "required": [ "attribute" ] }, { "properties": { "config": { "title": "Config field", "type": "string" } }, "required": [ "config" ] } ], "properties": { "agg": { "enum": [ false, "sum", "min", "max", "count", "avg", "first", "last" ], "title": "Default aggregation function for column values" }, "attribute": true, "config": true, "description": { "title": "Column description", "type": "string" }, "field": true, "filter": { "oneOf": [ { "title": "Column filter type", "type": "string" }, { "title": "Whether or not to filter", "type": "boolean" } ] }, "filter-search": { "title": "Whether search is available in filter", "type": "boolean" }, "filter-select-all": { "title": "Whether select all is available in filter", "type": "boolean" }, "flag-filter-label": { "title": "Filter label for flag column filters", "type": "string" }, "hide": { "title": "Flag to hide column", "type": "boolean" }, "label": { "title": "Column label", "type": "string" }, "links": { "items": { "properties": { "href": { "type": "string" }, "label": { "type": "string" }, "type": { "enum": [ "paper", "model", "dataset", "leaderboard", "code", "help", "website" ] } }, "required": [ "href" ], "type": "object" }, "title": "Column links", "type": "array" }, "metric": true, "run-attr": true, "sort": { "enum": [ "asc", "desc" ], "title": "Default column sort direction" }, "type": { "title": "Column data style", "type": "string" } }, "title": "Column definition", "type": "object" }, { "$ref": "#/$defs/fieldRef", "title": "Column field reference" } ] }, "fieldRef": { "oneOf": [ { "pattern": "^run-attr:.+$" }, { "pattern": "^metric:.+$" }, { "pattern": "^attribute:.+$" }, { "pattern": "^config:.+$" } ], "title": "Property field spec", "type": "string" }, "runSelect": { "additionalProperties": false, "properties": { "operation": { "type": "string" }, "status": { "oneOf": [ { "$ref": "#/$defs/runStatus" }, { "items": { "$ref": "#/$defs/runStatus" }, "type": "array" } ] } } }, "runStatus": { "enum": [ "completed", "terminated", "error", "running" ] } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "columns": { "items": { "$ref": "#/$defs/column" }, "title": "Board columns", "type": "array" }, "description": { "title": "Board description", "type": "string" }, "id": { "title": "Board ID", "type": "string" }, "name": { "title": "Board name", "type": "string" }, "run-select": { "$ref": "#/$defs/runSelect", "title": "Run select criteria" }, "title": { "title": "Board title", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
9fec63357cd00ee43bc45190582542aaf7bd7cb2
2024-05-27T03:11:02
gage/board.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "column": { "oneOf": [ { "additionalProperties": false, "oneOf": [ { "properties": { "field": { "$ref": "#/$defs/fieldRef" } }, "required": [ "field" ] }, { "properties": { "run-attr": { "title": "Run attribute field", "type": "string" } }, "required": [ "run-attr" ] }, { "properties": { "metric": { "title": "Summary metric field", "type": "string" } }, "required": [ "metric" ] }, { "properties": { "attribute": { "title": "Summary attribute field", "type": "string" } }, "required": [ "attribute" ] }, { "properties": { "config": { "title": "Config field", "type": "string" } }, "required": [ "config" ] } ], "properties": { "agg": { "enum": [ false, "sum", "min", "max", "count", "avg", "first", "last" ], "title": "Default aggregation function for column values" }, "attribute": true, "config": true, "description": { "title": "Column description", "type": "string" }, "field": true, "filter": { "oneOf": [ { "title": "Column filter type", "type": "string" }, { "title": "Whether or not to filter", "type": "boolean" } ] }, "filter-search": { "title": "Whether search is available in filter", "type": "boolean" }, "filter-select-all": { "title": "Whether select all is available in filter", "type": "boolean" }, "flag-filter-label": { "title": "Filter label for flag column filters", "type": "string" }, "hide": { "title": "Flag to hide column", "type": "boolean" }, "label": { "title": "Column heading name", "type": "string" }, "links": { "items": { "properties": { "href": { "type": "string" }, "label": { "type": "string" }, "type": { "enum": [ "paper", "model", "dataset", "leaderboard", "code", "help", "website" ] } }, "required": [ "href" ], "type": "object" }, "title": "Column links", "type": "array" }, "metric": true, "pinned": { "enum": [ "left", "right" ], "title": "Whether to pin the column" }, "row-group": { "title": "Group rows by this column", "type": "boolean" }, "run-attr": true, "sort": { "enum": [ "asc", "desc" ], "title": "Default column sort direction" }, "type": { "title": "Column data style", "type": "string" } }, "title": "Column definition", "type": "object" }, { "$ref": "#/$defs/fieldRef", "title": "Column field reference" } ] }, "fieldRef": { "oneOf": [ { "pattern": "^run-attr:.+$" }, { "pattern": "^metric:.+$" }, { "pattern": "^attribute:.+$" }, { "pattern": "^config:.+$" } ], "title": "Property field spec", "type": "string" }, "runSelect": { "additionalProperties": false, "properties": { "operation": { "type": "string" }, "status": { "oneOf": [ { "$ref": "#/$defs/runStatus" }, { "items": { "$ref": "#/$defs/runStatus" }, "type": "array" } ] } } }, "runStatus": { "enum": [ "completed", "terminated", "error", "running" ] } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "columns": { "items": { "$ref": "#/$defs/column" }, "title": "Board columns", "type": "array" }, "description": { "title": "Board description", "type": "string" }, "group-column": { "properties": { "label": { "title": "Group column heading name", "type": "string" } }, "title": "Group column config", "type": "object" }, "id": { "title": "Board ID", "type": "string" }, "name": { "title": "Board name", "type": "string" }, "run-select": { "$ref": "#/$defs/runSelect", "title": "Run select criteria" }, "title": { "title": "Board title", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
2b4a883a8d841f36e4c8a081c2caad67f3f419b7
2024-05-29T13:25:19
gage/board.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "column": { "oneOf": [ { "additionalProperties": false, "oneOf": [ { "properties": { "field": { "$ref": "#/$defs/fieldRef" } }, "required": [ "field" ] }, { "properties": { "run-attr": { "title": "Run attribute field", "type": "string" } }, "required": [ "run-attr" ] }, { "properties": { "metric": { "title": "Summary metric field", "type": "string" } }, "required": [ "metric" ] }, { "properties": { "attribute": { "title": "Summary attribute field", "type": "string" } }, "required": [ "attribute" ] }, { "properties": { "config": { "title": "Config field", "type": "string" } }, "required": [ "config" ] }, { "properties": { "score": { "$ref": "#/$defs/score" } }, "required": [ "score" ] } ], "properties": { "agg": { "enum": [ false, "sum", "min", "max", "count", "avg", "first", "first-val", "last", "last-val" ], "title": "Default aggregation function for column values" }, "attribute": true, "config": true, "description": { "title": "Column description", "type": "string" }, "field": true, "filter": { "oneOf": [ { "title": "Column filter type", "type": "string" }, { "title": "Whether or not to filter", "type": "boolean" } ] }, "filter-search": { "title": "Whether search is available in filter", "type": "boolean" }, "filter-select-all": { "title": "Whether select all is available in filter", "type": "boolean" }, "flag-filter-label": { "title": "Filter label for flag column filters", "type": "string" }, "hide": { "title": "Flag to hide column", "type": "boolean" }, "label": { "title": "Column heading name", "type": "string" }, "links": { "items": { "properties": { "href": { "type": "string" }, "label": { "type": "string" }, "type": { "enum": [ "paper", "model", "dataset", "leaderboard", "code", "help", "website" ] } }, "required": [ "href" ], "type": "object" }, "title": "Column links", "type": "array" }, "metric": true, "pinned": { "enum": [ "left", "right" ], "title": "Whether to pin the column" }, "row-group": { "title": "Group rows by this column", "type": "boolean" }, "run-attr": true, "score": true, "sort": { "enum": [ "asc", "desc" ], "title": "Default column sort direction" }, "type": { "title": "Column data style", "type": "string" } }, "title": "Column definition", "type": "object" }, { "$ref": "#/$defs/fieldRef", "title": "Column field reference" } ] }, "fieldRef": { "oneOf": [ { "pattern": "^run-attr:.+$" }, { "pattern": "^metric:.+$" }, { "pattern": "^attribute:.+$" }, { "pattern": "^config:.+$" } ], "title": "Property field spec", "type": "string" }, "runSelect": { "additionalProperties": false, "properties": { "operation": { "type": "string" }, "status": { "oneOf": [ { "$ref": "#/$defs/runStatus" }, { "items": { "$ref": "#/$defs/runStatus" }, "type": "array" } ] } } }, "runStatus": { "enum": [ "completed", "terminated", "error", "running" ] }, "score": { "oneOf": [ { "additionalProperties": false, "properties": { "average": { "items": { "oneOf": [ { "$ref": "#/$defs/fieldRef" }, { "items": false, "prefixItems": [ { "$ref": "#/$defs/fieldRef" }, { "type": "number" } ], "type": "array" } ] }, "type": "array" } }, "required": [ "average" ], "type": "object" } ] } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "columns": { "items": { "$ref": "#/$defs/column" }, "title": "Board columns", "type": "array" }, "description": { "title": "Board description", "type": "string" }, "group-column": { "properties": { "label": { "title": "Group column heading name", "type": "string" } }, "title": "Group column config", "type": "object" }, "id": { "title": "Board ID", "type": "string" }, "name": { "title": "Board name", "type": "string" }, "run-select": { "$ref": "#/$defs/runSelect", "title": "Run select criteria" }, "title": { "title": "Board title", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
4299861ad2d5fa901906f91ec35a85aa59cf8f06
2024-05-08T04:01:29
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "named-progress-spec": { "title": "Named progress spec", "type": "string" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gageml.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { "^[^$]": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "listing": { "additionalProperties": false, "properties": { "description": { "items": { "minLength": 1, "type": "string" }, "type": "array" } }, "title": "Listing configuration", "type": "object" }, "progress": { "oneOf": [ { "$ref": "#/$defs/named-progress-spec" }, { "additionalProperties": false, "properties": { "finalize": { "$ref": "#/$defs/named-progress-spec" }, "run": { "$ref": "#/$defs/named-progress-spec" }, "stage-dependencies": { "$ref": "#/$defs/named-progress-spec" }, "stage-runtime": { "$ref": "#/$defs/named-progress-spec" }, "stage-sourcecode": { "$ref": "#/$defs/named-progress-spec" } }, "title": "Full progress spec", "type": "object" } ], "title": "Progress spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "properties": { "$runs-dir": { "title": "Run directory", "type": "string" } }, "title": "Gage File", "type": "object" }
Apache-2.0
en
gageml/gage
2d95e4f82cedc8fd06a8941a787e635457350353
2023-12-26T13:34:05
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gage.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { "^[^$]": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize-run": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "properties": { "$runs-dir": { "title": "Run directory", "type": "string" } }, "title": "Gage ML Project File", "type": "object" }
Apache-2.0
en
gageml/gage
e7ad7290f9c6ada7d0191d4df81a258a3f598548
2023-12-14T12:28:10
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gage.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { ".+": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize-run": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "title": "Gage ML Project File", "type": "object" }
Apache-2.0
en
gageml/gage
3973c3bf1fb4bbc8d2331339295a76a0197e5f79
2023-12-18T17:50:26
gage/gagefile.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$defs": { "cmd-args": { "items": { "minLength": 1, "title": "Command argument", "type": "string" }, "title": "Command arguments", "type": "array" }, "config": { "additionalProperties": false, "properties": { "description": { "title": "Configuration description", "type": "string" }, "keys": { "$ref": "#/$defs/keys-pattern", "title": "Configuration keys" }, "prefix": { "title": "Prefix to apply to keys", "type": "string" }, "rename": { "title": "Alternative name for keys", "type": "string" }, "strip-prefix": { "title": "Prefix to remove from keys", "type": "string" } }, "required": [ "keys" ], "title": "Run configuration", "type": "object" }, "depends": { "oneOf": [ { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "link": { "type": "boolean" }, "type": { "enum": [ "project-files" ], "type": "string" } }, "required": [ "files" ], "title": "Project files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "files": { "$ref": "#/$defs/files-pattern" }, "run-select": { "title": "Run select criteria", "type": "string" }, "type": { "enum": [ "run-files" ], "type": "string" } }, "required": [ "run-select" ], "title": "Run files dependency", "type": "object" }, { "additionalProperties": false, "properties": { "description": { "title": "Dependency description", "type": "string" }, "runs-select": { "title": "Runs select criteria", "type": "string" }, "summary-filename": { "title": "Summary file name", "type": "string" }, "type": { "enum": [ "runs-summary" ], "type": "string" } }, "required": [ "type", "runs-select" ], "title": "Runs summary dependency", "type": "object" } ], "title": "Dependency", "type": "object" }, "exec-cmd": { "oneOf": [ { "$ref": "#/$defs/shell-cmd" }, { "$ref": "#/$defs/cmd-args" } ] }, "files-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "type": "array" } ], "title": "Files pattern" }, "keys-pattern": { "oneOf": [ { "minLength": 1, "type": "string" }, { "items": { "minLength": 1, "type": "string" }, "minItems": 1, "type": "array" } ], "title": "Keys pattern" }, "shell-cmd": { "title": "Shell command", "type": "string" } }, "$id": "https://gage.org/gagefile", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "patternProperties": { ".+": { "additionalProperties": false, "properties": { "config": { "oneOf": [ { "$ref": "#/$defs/keys-pattern", "title": "Operation config keys" }, { "$ref": "#/$defs/config" }, { "items": { "$ref": "#/$defs/config" }, "type": "array" } ], "title": "Operation configuration" }, "default": { "type": "boolean" }, "depends": { "oneOf": [ { "$ref": "#/$defs/depends" }, { "items": { "$ref": "#/$defs/depends" }, "type": "array" } ], "title": "Operation dependencies" }, "description": { "type": "string" }, "exec": { "oneOf": [ { "$ref": "#/$defs/exec-cmd" }, { "additionalProperties": false, "properties": { "finalize-run": { "$ref": "#/$defs/exec-cmd" }, "run": { "$ref": "#/$defs/exec-cmd" }, "stage-dependencies": { "$ref": "#/$defs/exec-cmd" }, "stage-runtime": { "$ref": "#/$defs/exec-cmd" }, "stage-sourcecode": { "$ref": "#/$defs/exec-cmd" } }, "title": "Full exec spec", "type": "object" } ], "title": "Exec spec" }, "sourcecode": { "oneOf": [ { "$ref": "#/$defs/files-pattern" }, { "type": "boolean" } ], "title": "Operation source code" } }, "title": "Operation definition", "type": "object" } }, "title": "Gage ML Project File", "type": "object" }
Apache-2.0
en
gageml/gage
b9bc23390946cd4fe96f5a2c7fd74dd5bc7df1f1
2023-12-28T17:15:20
gage/userconfig.schema.json
6
2024-05-27T09:53:17.228152Z
{ "$id": "https://gageml.org/userconfig", "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "properties": { "repos": { "additionalProperties": false, "patternProperties": { ".+": { "oneOf": [ { "required": [ "type" ] }, { "required": [ "path" ] } ], "properties": { "path": { "title": "Local repository path", "type": "string" }, "type": { "title": "Repository type", "type": "string" } }, "title": "repository", "type": "object" } }, "title": "Gage repositories", "type": "object" } }, "title": "Gage User Config", "type": "object" }
Apache-2.0
en
FabricLabs/fabric
0b737c8a91503634029549528b25a02e8800b63f
2022-10-13T11:42:47
schemata/actor.json
55
2024-05-28T04:47:42.838985Z
{ "$id": "https://hub.fabric.pub/schemata/actor.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Any Fabric entity.", "properties": { "id": { "description": "The unique identifier for an actor", "type": "string" } }, "required": [ "id" ], "title": "Actor", "type": "object", "version": "0.0.0" }
MIT
en
FabricLabs/fabric
0206ddb64b9aee2c7287a4d3a1d78c9fb78e990a
2022-07-25T19:31:36
schemata/actor.json
55
2024-05-28T04:47:42.838985Z
{ "$id": "https://hub.fabric.pub/schemata/actor.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Any Fabric entity.", "properties": { "id": { "description": "The unique identifier for an actor", "type": "string" } }, "required": [ "id" ], "title": "Actor", "type": "object" }
MIT
en
FabricLabs/fabric
89575fda9abd2d9f0fd32c0c813cf77bacd2c05f
2022-05-26T22:43:03
schemata/actor.json
55
2024-05-28T04:47:42.838985Z
{ "$id": "https://hub.fabric.pub/schemas/actor.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Any Fabric entity.", "properties": { "id": { "description": "The unique identifier for an actor", "type": "string" } }, "required": [ "id" ], "title": "Actor", "type": "object" }
MIT
en
FabricLabs/fabric
0206ddb64b9aee2c7287a4d3a1d78c9fb78e990a
2022-07-25T19:31:36
schemata/SpendMessage.json
55
2024-05-28T04:47:42.838985Z
{ "$id": "https://hub.fabric.pub/schemata/SpendMessage.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "Instance of a spend.", "properties": { "amount": { "description": "Amount (in BTC) to spend.", "type": "string" }, "destination": { "description": "Destination for funds.", "type": "string" } }, "required": [ "amount", "destination" ], "title": "SpendMessage", "type": "object" }
MIT
en
SpacehuhnTech/USBNova
0bc8e28ec1389c0cad684a14bb6ddb4cc1b05c52
2023-06-28T09:07:37
schema.json
48
2024-05-27T05:55:33.336637Z
{ "$defs": { "color": { "additionalItems": false, "maxItems": 4, "minItems": 4, "prefixItems": [ { "description": "From 0 to 255", "maximum": 255, "minimum": 0, "title": "Red", "type": "integer" }, { "description": "From 0 to 255", "maximum": 255, "minimum": 0, "title": "Green", "type": "integer" }, { "description": "From 0 to 255", "maximum": 255, "minimum": 0, "title": "Blue", "type": "integer" }, { "description": "The blink interval in milliseconds, 0 means it's not blinking.", "minimum": 0, "title": "Blink-Interval", "type": "integer" } ], "type": "array" }, "preferences": { "additionalProperties": false, "description": "Preferences for your USB Nova", "properties": { "$schema": { "type": "string" }, "attack_color": { "$ref": "#/$defs/color", "default": [ 128, 0, 0, 0 ], "title": "LED color for attack mode" }, "default_delay": { "default": 5, "minimum": 0, "title": "Default delay between each line", "type": "integer" }, "default_layout": { "default": "US", "enum": [ "BE", "BE_MAC", "BG", "BG_MAC", "CA-CM", "CA-FR", "CA-FR_MAC", "CH-DE", "CH-FR", "CH-DE_MAC", "CH-FR_MAC", "CZ", "CZ_MAC", "DE", "DE_MAC", "DK", "DK_MAC", "EE", "EE_MAC", "ES", "ES_MAC", "ES-LA", "ES-LA_MAC", "FI", "FI_MAC", "FR", "FR_MAC", "GB", "GB_MAC", "GR", "GR_MAC", "HU", "HU_MAC", "IE", "IN", "IN_MAC", "IS", "IS_MAC", "IT", "IT_MAC", "LT", "LT_MAC", "LV", "LV_MAC", "NL", "NL_MAC", "NO", "NO_MAC", "PL", "PL_MAC", "PT-BR", "PT-BR_MAC", "PT", "PT_MAC", "RO", "RO_MAC", "RU", "RU_MAC", "SE", "SE_MAC", "SI", "SI_MAC", "SK", "SK_MAC", "TR", "TR_MAC", "UA", "UA_MAC", "US", "US_MAC" ], "title": "Default Keyboard Layout", "type": "string" }, "disable_capslock": { "default": true, "title": "Turn off capslock before starting attack (only work on Windows)", "type": "boolean" }, "enable_hid": { "default": true, "title": "Enable HID in setup mode", "type": "boolean" }, "enable_led": { "default": true, "title": "Enable RGB LED", "type": "boolean" }, "enable_msc": { "default": false, "title": "Enable USB mass storage (USB drive) in attack mode", "type": "boolean" }, "idle_color": { "$ref": "#/$defs/color", "default": [ 0, 30, 0, 0 ], "title": "LED color for finished attack" }, "initial_delay": { "default": 1000, "minimum": 0, "title": "Startup delay", "type": "integer" }, "main_script": { "default": "main_script.txt", "title": "Name of your BadUSB script", "type": "string" }, "manufacturer": { "default": "SpacehuhnTech", "title": "USB Manufacturer Descriptor", "type": "string" }, "pid": { "default": "11A4", "examples": [ "0250" ], "maxLength": 4, "minLength": 4, "pattern": "^[0-9A-F]{4}$", "title": "USB Product ID", "type": "string" }, "run_on_indicator": { "default": false, "title": "Start script when the user presses capslock, numlock, or another indicator key (only work on Windows)", "type": "boolean" }, "serial": { "default": "1337", "title": "USB Serial Number Descriptor", "type": "string" }, "setup_color": { "$ref": "#/$defs/color", "default": [ 0, 0, 20, 0 ], "title": "LED color for setup mode" }, "version": { "default": "0100", "maxLength": 4, "minLength": 4, "title": "USB Product Revision (0100 => 1.0)", "type": "string" }, "vid": { "default": "16D0", "examples": [ "05AC" ], "maxLength": 4, "minLength": 4, "pattern": "^[0-9A-F]{4}$", "title": "USB Vendor ID", "type": "string" } }, "title": "Preferences", "type": "object" } }, "$ref": "#/$defs/preferences", "$schema": "https://json-schema.org/draft/2020-12/schema" }
MIT
en
SpacehuhnTech/USBNova
5a7ddd584539a5a1ef3268653d63b80179f73cff
2023-06-28T08:39:15
schema.json
48
2024-05-27T05:55:33.336637Z
{ "$defs": { "color": { "additionalItems": false, "maxItems": 4, "minItems": 4, "prefixItems": [ { "description": "From 0 to 255", "maximum": 255, "minimum": 0, "title": "Red", "type": "integer" }, { "description": "From 0 to 255", "maximum": 255, "minimum": 0, "title": "Green", "type": "integer" }, { "description": "From 0 to 255", "maximum": 255, "minimum": 0, "title": "Blue", "type": "integer" }, { "description": "The blink interval in milliseconds, 0 means it's not blinking.", "minimum": 0, "title": "Blink-Interval", "type": "integer" } ], "type": "array" }, "preferences": { "additionalProperties": false, "description": "Preferences for your USB Nova", "properties": { "$schema": { "type": "string" }, "attack_color": { "$ref": "#/$defs/color", "default": [ 128, 0, 0, 0 ], "title": "LED color for attack mode" }, "default_delay": { "default": 5, "minimum": 0, "title": "Default delay between each line", "type": "integer" }, "default_layout": { "default": "US", "enum": [ "BE", "BE_MAC", "BG", "BG_MAC", "CA-CM", "CA-FR", "CA-FR_MAC", "CH-DE", "CH-FR", "CH-DE_MAC", "CH-FR_MAC", "CZ", "CZ_MAC", "DE", "DE_MAC", "DK", "DK_MAC", "EE", "EE_MAC", "ES", "ES_MAC", "ES-LA", "ES-LA_MAC", "FI", "FI_MAC", "FR", "FR_MAC", "GB", "GB_MAC", "GR", "GR_MAC", "HU", "HU_MAC", "IE", "IN", "IN_MAC", "IS", "IS_MAC", "IT", "IT_MAC", "LT", "LT_MAC", "LV", "LV_MAC", "NL", "NL_MAC", "NO", "NO_MAC", "PL", "PL_MAC", "PT-BR", "PT-BR_MAC", "PT", "PT_MAC", "RO", "RO_MAC", "RU", "RU_MAC", "SE", "SE_MAC", "SI", "SI_MAC", "SK", "SK_MAC", "TR", "TR_MAC", "UA", "UA_MAC", "US", "US_MAC" ], "title": "Default Keyboard Layout", "type": "string" }, "disable_capslock": { "default": true, "title": "Turn off capslock before starting attack (only work on Windows)", "type": "boolean" }, "enable_hid": { "default": true, "title": "Enable HID in setup mode", "type": "boolean" }, "enable_led": { "default": true, "title": "Enable RGB LED", "type": "boolean" }, "enable_msc": { "default": false, "title": "Enable USB mass storage (USB drive) in attack mode", "type": "boolean" }, "idle_color": { "$ref": "#/$defs/color", "default": [ 0, 30, 0, 0 ], "title": "LED color for finished attack" }, "initial_delay": { "default": 1000, "minimum": 0, "title": "Startup delay", "type": "integer" }, "main_script": { "default": "main_script.txt", "title": "Name of your BadUSB script", "type": "string" }, "pid": { "default": "11A4", "examples": [ "0250" ], "maxLength": 4, "minLength": 4, "pattern": "^[0-9A-F]{4}$", "title": "USB Product ID", "type": "string" }, "rev": { "default": "0100", "maxLength": 4, "minLength": 4, "title": "USB Product Revision (0100 => 1.0)", "type": "string" }, "run_on_indicator": { "default": false, "title": "Start script when the user presses capslock, numlock, or another indicator key (only work on Windows)", "type": "boolean" }, "setup_color": { "$ref": "#/$defs/color", "default": [ 0, 0, 20, 0 ], "title": "LED color for setup mode" }, "vid": { "default": "16D0", "examples": [ "05AC" ], "maxLength": 4, "minLength": 4, "pattern": "^[0-9A-F]{4}$", "title": "USB Vendor ID", "type": "string" } }, "title": "Preferences", "type": "object" } }, "$ref": "#/$defs/preferences", "$schema": "https://json-schema.org/draft/2020-12/schema" }
MIT
en