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
alan-turing-institute/sqlsynthgen
f02784a734090bc63d52fa5bd3341a47e70027d0
2023-09-06T16:06:59
sqlsynthgen/json_schemas/config_schema.json
10
2024-05-27T06:54:16.009255Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A SQLSynthGen configuration YAML file", "properties": { "max-unique-constraint-tries": { "description": "The maximum number of tries to respect a uniqueness constraint.", "type": "integer" }, "row_generators_module": { "description": "The name of a local Python module of row generators (excluding .py).", "type": "string" }, "src-stats": { "description": "An array of source statistics queries.", "items": { "additionalProperties": false, "properties": { "delta": { "description": "The differential privacy delta value for the DP query.", "type": "number" }, "dp-query": { "description": "A SmartNoise SQL query.", "type": "string" }, "epsilon": { "description": "The differential privacy epsilon value for the DP query.", "type": "number" }, "name": { "description": "A name for the query, which will be used in the stats file.", "type": "string" }, "query": { "description": "A SQL query.", "type": "string" }, "snsql-metadata": { "description": "See https://docs.smartnoise.org/sql/metadata.html#yaml-format.", "patternProperties": { "^(?!(max_ids|row_privacy|sample_max_ids|censor_dims|clamp_counts|clamp_columns|use_dpsu)).*$": { "additionalProperties": false, "properties": { "lower": { "type": "number" }, "missing_value": {}, "nullable": { "type": "boolean" }, "private_id": { "type": "boolean" }, "sensitivity": { "type": "number" }, "type": { "type": "string" }, "upper": { "type": "number" } }, "required": [ "type" ], "type": "object" } }, "properties": { "censor_dims": { "type": "boolean" }, "clamp_columns": { "type": "boolean" }, "clamp_counts": { "type": "boolean" }, "max_ids": { "type": "integer" }, "row_privacy": { "type": "boolean" }, "sample_max_ids": { "type": "boolean" }, "use_dpsu": { "type": "boolean" } }, "type": "object" } }, "required": [ "name", "query" ] }, "type": "array" }, "story_generators": { "description": "An array of story generators.", "items": { "additionalProperties": false, "properties": { "args": { "description": "Positional arguments to pass to the story generator.", "type": "array" }, "kwargs": { "description": "Keyword arguments to pass to the story generator.", "type": "object" }, "name": { "description": "The full name of a story generator (e.g. my_story_generators.short_story).", "type": "string" }, "num_stories_per_pass": { "description": "The number of times to call the story generator per pass.", "type": "integer" } }, "required": [ "name", "num_stories_per_pass" ], "type": "object" }, "type": "array" }, "story_generators_module": { "description": "The name of a local Python module of story generators (excluding .py).", "type": "string" }, "tables": { "description": "Table configurations.", "patternProperties": { ".*": { "additionalProperties": false, "description": "A table configuration.", "properties": { "ignore": { "description": "Whether to completely ignore this table.", "type": "boolean" }, "num_rows_per_pass": { "description": "The number of rows to generate per pass.", "type": "integer" }, "row_generators": { "description": "An array of row generators to create column values.", "items": { "properties": { "args": { "description": "Positional arguments to pass to the function.", "type": "array" }, "columns_assigned": { "description": "One or more columns to assign the return value to.", "items": { "type": "string" }, "type": [ "array", "string" ] }, "kwargs": { "description": "Keyword arguments to pass to the function.", "type": "object" }, "name": { "description": "The name of a (built-in or custom) function (e.g. max or my_row_generators.my_gen).", "type": "string" } }, "required": [ "name", "columns_assigned" ], "type": "object" }, "type": "array" }, "vocabulary_table": { "description": "Whether to export the table data.", "type": "boolean" } }, "type": "object" } }, "type": "object" }, "use-asyncio": { "description": "Run source-statistics queries using asyncpg.", "type": "boolean" } }, "title": "SQLSynthGen Config", "type": [ "object" ] }
MIT
en
alan-turing-institute/sqlsynthgen
0d00a4ca6c2ce5ef150edbc1642cf497aede198b
2023-07-27T15:06:20
sqlsynthgen/json_schemas/config_schema.json
10
2024-05-27T06:54:16.009255Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A SQLSynthGen configuration YAML file", "properties": { "max-unique-constraint-tries": { "type": "integer" }, "row_generators_module": { "type": "string" }, "src-stats": { "items": { "additionalProperties": false, "properties": { "delta": { "type": "number" }, "dp-query": { "type": "string" }, "epsilon": { "type": "number" }, "name": { "type": "string" }, "query": { "type": "string" }, "snsql-metadata": { "patternProperties": { "^(?!censor_dims).*$": { "properties": { "name": { "type": "string" }, "private_id": { "type": "boolean" }, "type": { "type": "string" } }, "type": "object" } }, "properties": { "censor_dims": { "type": "boolean" } }, "type": "object" } }, "required": [ "name", "query" ] }, "type": "array" }, "story_generators": { "items": { "additionalProperties": false, "properties": { "args": { "type": "array" }, "kwargs": { "type": "object" }, "name": { "type": "string" }, "num_stories_per_pass": { "type": "integer" } }, "required": [ "name", "num_stories_per_pass" ], "type": "object" }, "type": "array" }, "story_generators_module": { "type": "string" }, "tables": { "patternProperties": { ".*": { "additionalProperties": false, "properties": { "num_rows_per_pass": { "type": "integer" }, "row_generators": { "items": { "properties": { "args": { "type": "array" }, "columns_assigned": { "items": { "type": "string" }, "type": [ "array", "string" ] }, "kwargs": { "type": "object" }, "name": { "type": "string" } }, "type": "object" }, "type": "array" }, "vocabulary_table": { "type": "boolean" } }, "type": "object" } }, "type": "object" }, "use-asyncio": { "type": "boolean" } }, "title": "SQLSynthGen Config", "type": [ "object" ] }
MIT
en
alan-turing-institute/sqlsynthgen
b471c141fc6e275cc7d7623d02fbeeae319dd496
2023-07-04T16:10:20
sqlsynthgen/json_schemas/config_schema.json
10
2024-05-27T06:54:16.009255Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A SQLSynthGen configuration YAML file", "properties": { "max-unique-constraint-tries": { "type": "integer" }, "row_generators_module": { "type": "string" }, "smartnoise-sql": { "patternProperties": { ".*": { "patternProperties": { ".*": { "patternProperties": { "^(?!censor_dims).*$": { "properties": { "name": { "type": "string" }, "private_id": { "type": "boolean" }, "type": { "type": "string" } }, "type": "object" } }, "properties": { "censor_dims": { "type": "boolean" } }, "type": "object" } }, "type": "object" } }, "type": "object" }, "src-stats": { "items": { "properties": { "delta": { "type": "number" }, "epsilon": { "type": "number" }, "name": { "type": "string" }, "query": { "type": "string" } } }, "type": "array" }, "story_generators": { "items": { "additionalProperties": false, "properties": { "args": { "type": "array" }, "kwargs": { "type": "object" }, "name": { "type": "string" }, "num_stories_per_pass": { "type": "integer" } }, "type": "object" }, "type": "array" }, "story_generators_module": { "type": "string" }, "tables": { "patternProperties": { ".*": { "additionalProperties": false, "properties": { "num_rows_per_pass": { "type": "integer" }, "row_generators": { "items": { "properties": { "args": { "type": "array" }, "columns_assigned": { "items": { "type": "string" }, "type": [ "array", "string" ] }, "kwargs": { "type": "object" }, "name": { "type": "string" } }, "type": "object" }, "type": "array" }, "vocabulary_table": { "type": "boolean" } }, "type": "object" } }, "type": "object" } }, "title": "SQLSynthGen Config", "type": [ "object" ] }
MIT
en
alan-turing-institute/sqlsynthgen
feabcfaf4326b1be41917bfc0a4a03208d6c04cb
2023-06-05T15:30:09
sqlsynthgen/json_schemas/config_schema.json
10
2024-05-27T06:54:16.009255Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A SQLSynthGen configuration YAML file", "properties": { "row_generators_module": { "type": "string" }, "smartnoise-sql": { "patternProperties": { ".*": { "patternProperties": { ".*": { "patternProperties": { "^(?!censor_dims).*$": { "properties": { "name": { "type": "string" }, "private_id": { "type": "boolean" }, "type": { "type": "string" } }, "type": "object" } }, "properties": { "censor_dims": { "type": "boolean" } }, "type": "object" } }, "type": "object" } }, "type": "object" }, "src-stats": { "items": { "properties": { "delta": { "type": "number" }, "epsilon": { "type": "number" }, "name": { "type": "string" }, "query": { "type": "string" } } }, "type": "array" }, "story_generators": { "items": { "additionalProperties": false, "properties": { "args": { "type": "array" }, "kwargs": { "type": "object" }, "name": { "type": "string" }, "num_stories_per_pass": { "type": "integer" } }, "type": "object" }, "type": "array" }, "story_generators_module": { "type": "string" }, "tables": { "patternProperties": { ".*": { "additionalProperties": false, "properties": { "num_rows_per_pass": { "type": "integer" }, "row_generators": { "items": { "properties": { "args": { "type": "array" }, "columns_assigned": { "items": { "type": "string" }, "type": [ "array", "string" ] }, "kwargs": { "type": "object" }, "name": { "type": "string" } }, "type": "object" }, "type": "array" }, "vocabulary_table": { "type": "boolean" } }, "type": "object" } }, "type": "object" } }, "title": "SQLSynthGen Config", "type": [ "object" ] }
MIT
en
alan-turing-institute/sqlsynthgen
16c35613e12c70205c228575bf10f0b3467dd90e
2023-08-23T16:09:27
sqlsynthgen/json_schemas/config_schema.json
10
2024-05-27T06:54:16.009255Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A SQLSynthGen configuration YAML file", "properties": { "max-unique-constraint-tries": { "description": "todo.", "type": "integer" }, "row_generators_module": { "description": "The name of a local Python module of row generators (excluding .py).", "type": "string" }, "src-stats": { "description": "An array of source statistics queries.", "items": { "additionalProperties": false, "properties": { "delta": { "description": "The differential privacy delta value for the DP query.", "type": "number" }, "dp-query": { "description": "A SmartNoise SQL query.", "type": "string" }, "epsilon": { "description": "The differential privacy epsilon value for the DP query.", "type": "number" }, "name": { "description": "A name for the query.", "type": "string" }, "query": { "description": "A SQL query.", "type": "string" }, "snsql-metadata": { "description": "See https://docs.smartnoise.org/sql/metadata.html#yaml-format.", "patternProperties": { "^(?!(max_ids|row_privacy|sample_max_ids|censor_dims|clamp_counts|clamp_columns|use_dpsu)).*$": { "additionalProperties": false, "properties": { "lower": { "type": "number" }, "missing_value": {}, "nullable": { "type": "boolean" }, "private_id": { "type": "boolean" }, "sensitivity": { "type": "number" }, "type": { "type": "string" }, "upper": { "type": "number" } }, "required": [ "type" ], "type": "object" } }, "properties": { "censor_dims": { "type": "boolean" }, "clamp_columns": { "type": "boolean" }, "clamp_counts": { "type": "boolean" }, "max_ids": { "type": "integer" }, "row_privacy": { "type": "boolean" }, "sample_max_ids": { "type": "boolean" }, "use_dpsu": { "type": "boolean" } }, "type": "object" } }, "required": [ "name", "query" ] }, "type": "array" }, "story_generators": { "description": "An array of story generators.", "items": { "additionalProperties": false, "properties": { "args": { "type": "array" }, "kwargs": { "type": "object" }, "name": { "description": "todo.", "type": "string" }, "num_stories_per_pass": { "type": "integer" } }, "required": [ "name", "num_stories_per_pass" ], "type": "object" }, "type": "array" }, "story_generators_module": { "description": "The name of a local Python module of story generators (excluding .py).", "type": "string" }, "tables": { "description": "Table configurations.", "patternProperties": { ".*": { "additionalProperties": false, "description": "A table configuration.", "properties": { "num_rows_per_pass": { "description": "The number of rows to generate per pass.", "type": "integer" }, "row_generators": { "description": "An array of row generators to create column values.", "items": { "properties": { "args": { "description": "The arguments to pass to the function.", "type": "array" }, "columns_assigned": { "description": "One or more columns to assign the return value to.", "items": { "type": "string" }, "type": [ "array", "string" ] }, "kwargs": { "description": "The keyword arguments to pass to the function.", "type": "object" }, "name": { "description": "The name of a (built-in or custom) function.", "type": "string" } }, "required": [ "name", "columns_assigned" ], "type": "object" }, "type": "array" }, "vocabulary_table": { "description": "Whether to export the table data.", "type": "boolean" } }, "type": "object" } }, "type": "object" }, "use-asyncio": { "description": "Run source-statistics queries using asyncpg.", "type": "boolean" } }, "title": "SQLSynthGen Config", "type": [ "object" ] }
MIT
en
alan-turing-institute/sqlsynthgen
e4d9ed7f09ed2de1ab21522bf4ff89e7a795d2ac
2023-08-23T14:33:05
sqlsynthgen/json_schemas/config_schema.json
10
2024-05-27T06:54:16.009255Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A SQLSynthGen configuration YAML file", "properties": { "max-unique-constraint-tries": { "type": "integer" }, "row_generators_module": { "type": "string" }, "src-stats": { "items": { "additionalProperties": false, "properties": { "delta": { "type": "number" }, "dp-query": { "type": "string" }, "epsilon": { "type": "number" }, "name": { "type": "string" }, "query": { "type": "string" }, "snsql-metadata": { "patternProperties": { "^(?!(max_ids|row_privacy|sample_max_ids|censor_dims|clamp_counts|clamp_columns|use_dpsu)).*$": { "additionalProperties": false, "properties": { "lower": { "type": "number" }, "missing_value": {}, "nullable": { "type": "boolean" }, "private_id": { "type": "boolean" }, "sensitivity": { "type": "number" }, "type": { "type": "string" }, "upper": { "type": "number" } }, "required": [ "type" ], "type": "object" } }, "properties": { "censor_dims": { "type": "boolean" }, "clamp_columns": { "type": "boolean" }, "clamp_counts": { "type": "boolean" }, "max_ids": { "type": "integer" }, "row_privacy": { "type": "boolean" }, "sample_max_ids": { "type": "boolean" }, "use_dpsu": { "type": "boolean" } }, "type": "object" } }, "required": [ "name", "query" ] }, "type": "array" }, "story_generators": { "items": { "additionalProperties": false, "properties": { "args": { "type": "array" }, "kwargs": { "type": "object" }, "name": { "type": "string" }, "num_stories_per_pass": { "type": "integer" } }, "required": [ "name", "num_stories_per_pass" ], "type": "object" }, "type": "array" }, "story_generators_module": { "type": "string" }, "tables": { "patternProperties": { ".*": { "additionalProperties": false, "properties": { "num_rows_per_pass": { "type": "integer" }, "row_generators": { "items": { "properties": { "args": { "type": "array" }, "columns_assigned": { "items": { "type": "string" }, "type": [ "array", "string" ] }, "kwargs": { "type": "object" }, "name": { "type": "string" } }, "required": [ "name", "columns_assigned" ], "type": "object" }, "type": "array" }, "vocabulary_table": { "type": "boolean" } }, "type": "object" } }, "type": "object" }, "use-asyncio": { "type": "boolean" } }, "title": "SQLSynthGen Config", "type": [ "object" ] }
MIT
en
alan-turing-institute/sqlsynthgen
da5d3ee99145b2b620b0319fe024e73cbd932e11
2023-08-30T15:31:08
sqlsynthgen/json_schemas/config_schema.json
10
2024-05-27T06:54:16.009255Z
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "additionalProperties": false, "description": "A SQLSynthGen configuration YAML file", "properties": { "max-unique-constraint-tries": { "description": "The maximum number of tries to respect a uniqueness constraint.", "type": "integer" }, "row_generators_module": { "description": "The name of a local Python module of row generators (excluding .py).", "type": "string" }, "src-stats": { "description": "An array of source statistics queries.", "items": { "additionalProperties": false, "properties": { "delta": { "description": "The differential privacy delta value for the DP query.", "type": "number" }, "dp-query": { "description": "A SmartNoise SQL query.", "type": "string" }, "epsilon": { "description": "The differential privacy epsilon value for the DP query.", "type": "number" }, "name": { "description": "A name for the query, which will be used in the stats file.", "type": "string" }, "query": { "description": "A SQL query.", "type": "string" }, "snsql-metadata": { "description": "See https://docs.smartnoise.org/sql/metadata.html#yaml-format.", "patternProperties": { "^(?!(max_ids|row_privacy|sample_max_ids|censor_dims|clamp_counts|clamp_columns|use_dpsu)).*$": { "additionalProperties": false, "properties": { "lower": { "type": "number" }, "missing_value": {}, "nullable": { "type": "boolean" }, "private_id": { "type": "boolean" }, "sensitivity": { "type": "number" }, "type": { "type": "string" }, "upper": { "type": "number" } }, "required": [ "type" ], "type": "object" } }, "properties": { "censor_dims": { "type": "boolean" }, "clamp_columns": { "type": "boolean" }, "clamp_counts": { "type": "boolean" }, "max_ids": { "type": "integer" }, "row_privacy": { "type": "boolean" }, "sample_max_ids": { "type": "boolean" }, "use_dpsu": { "type": "boolean" } }, "type": "object" } }, "required": [ "name", "query" ] }, "type": "array" }, "story_generators": { "description": "An array of story generators.", "items": { "additionalProperties": false, "properties": { "args": { "description": "Positional arguments to pass to the story generator.", "type": "array" }, "kwargs": { "description": "Keyword arguments to pass to the story generator.", "type": "object" }, "name": { "description": "The full name of a story generator (e.g. my_story_generators.short_story).", "type": "string" }, "num_stories_per_pass": { "description": "The number of times to call the story generator per pass.", "type": "integer" } }, "required": [ "name", "num_stories_per_pass" ], "type": "object" }, "type": "array" }, "story_generators_module": { "description": "The name of a local Python module of story generators (excluding .py).", "type": "string" }, "tables": { "description": "Table configurations.", "patternProperties": { ".*": { "additionalProperties": false, "description": "A table configuration.", "properties": { "num_rows_per_pass": { "description": "The number of rows to generate per pass.", "type": "integer" }, "row_generators": { "description": "An array of row generators to create column values.", "items": { "properties": { "args": { "description": "Positional arguments to pass to the function.", "type": "array" }, "columns_assigned": { "description": "One or more columns to assign the return value to.", "items": { "type": "string" }, "type": [ "array", "string" ] }, "kwargs": { "description": "Keyword arguments to pass to the function.", "type": "object" }, "name": { "description": "The name of a (built-in or custom) function (e.g. max or my_row_generators.my_gen).", "type": "string" } }, "required": [ "name", "columns_assigned" ], "type": "object" }, "type": "array" }, "vocabulary_table": { "description": "Whether to export the table data.", "type": "boolean" } }, "type": "object" } }, "type": "object" }, "use-asyncio": { "description": "Run source-statistics queries using asyncpg.", "type": "boolean" } }, "title": "SQLSynthGen Config", "type": [ "object" ] }
MIT
en
u-wave/core
190469cf26f8e939d3d2c63fd3ca11809d25e76c
2022-10-28T12:01:30
src/schemas/waitlist.json
31
2024-05-28T04:35:57.230639Z
{ "$id": "https://ns.u-wave.net/config/waitlist.json#", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "Configure how the waitlist works: cycles, locking, etc.", "properties": { "cycle": { "default": true, "description": "When enabled, users are automatically added back to the waitlist after their media has played. In busy servers, you can disable this to allow more active people to play more often.", "title": "Cycle the waitlist", "type": "boolean" }, "locked": { "default": false, "description": "While locked, only users with the `waitlist.join.locked` permission can join the wait list. This can be useful for themed events and the like.", "title": "Lock down the waitlist", "type": "boolean" } }, "title": "DJ Queue", "type": "object", "uw:key": "u-wave:waitlist" }
MIT
en
u-wave/core
13d1222bb27342a3e104973b02b7e1f46715f02e
2021-02-07T14:34:45
src/schemas/definitions.json
31
2024-05-28T04:35:57.230639Z
{ "$id": "https://ns.u-wave.net/schemas/definitions.json#", "$schema": "https://json-schema.org/draft/2019-09/schema", "definitions": { "LegacyPagination": { "properties": { "limit": { "minimum": 0, "type": "integer" }, "page": { "minimum": 0, "type": "integer" } }, "type": "object" }, "ObjectID": { "pattern": "^[0-9a-f]{24}$", "type": "string" }, "Pagination": { "properties": { "page": { "properties": { "limit": { "minimum": 0, "type": "integer" }, "offset": { "minimum": 0, "type": "integer" } }, "type": "object" } }, "type": "object" }, "Username": { "maxLength": 32, "minLength": 3, "pattern": "^[^\\s\\n]+$", "type": "string" } } }
MIT
en
u-wave/core
780c7989417769ea86c3e2237e8fd79b1b071b43
2023-03-08T22:50:53
src/schemas/emotes.json
31
2024-05-28T04:35:57.230639Z
{ "$id": "https://ns.u-wave.net/config/emotes.json#", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "Add custom emotes for use in the chat.", "properties": { "twitch": { "default": {}, "properties": { "bttv": { "default": false, "title": "Enable BetterTTV emotes", "type": "boolean" }, "channels": { "default": [], "description": "Use emotes from these channel names", "items": { "type": "string" }, "title": "Channels", "type": "array" }, "clientId": { "default": null, "nullable": true, "title": "Twitch App Token: Client ID", "type": "string" }, "clientSecret": { "default": null, "nullable": true, "title": "Twitch App Token: Client Secret", "type": "string" }, "ffz": { "default": false, "title": "Enable FrankerFaceZ emotes", "type": "boolean" }, "seventv": { "default": false, "title": "Enable 7TV emotes", "type": "boolean" }, "useTwitchGlobalEmotes": { "default": false, "title": "Enable global Twitch emotes", "type": "boolean" } }, "title": "Twitch Emotes", "type": "object" } }, "required": [], "title": "Emotes", "type": "object", "uw:access": "admin", "uw:key": "u-wave:emotes" }
MIT
en
u-wave/core
83172b9c4c48c3a8f88a6cc9b87ac217fc01fee8
2021-03-13T12:39:57
src/schemas/socialAuth.json
31
2024-05-28T04:35:57.230639Z
{ "$id": "https://ns.u-wave.net/config/socialAuth.json#", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "Settings for third party login integrations like Google.", "properties": { "google": { "default": {}, "dependentSchemas": { "enabled": { "$comment": "If `enabled` is set and is true, `clientID` and `clientSecret` are both required.", "oneOf": [ { "properties": { "enabled": { "const": false } } }, { "required": [ "clientID", "clientSecret" ], "type": "object" } ] } }, "description": "Settings for the Google authentication integration.", "properties": { "callbackURL": { "description": "The URL that Google will redirect to once a signin is complete. This URL should contain the code that finalizes the login on the \u00fcWave end.", "format": "uri-reference", "title": "Callback URL", "type": "string" }, "clientID": { "description": "The OAuth2 Client ID.", "minLength": 1, "title": "Client ID", "type": "string" }, "clientSecret": { "description": "The secret key.", "minLength": 1, "title": "Client Secret", "type": "string" }, "enabled": { "default": false, "title": "Enabled", "type": "boolean" } }, "required": [ "enabled" ], "title": "Google Authentication", "type": "object" } }, "required": [ "google" ], "title": "Social Login", "type": "object", "uw:access": "admin", "uw:key": "u-wave:socialAuth" }
MIT
en
u-wave/core
809a0d53cb2eaa667fd20d7e0dd37a566841b4e3
2023-03-08T20:40:45
src/schemas/emotes.json
31
2024-05-28T04:35:57.230639Z
{ "$id": "https://ns.u-wave.net/config/emotes.json#", "$schema": "https://json-schema.org/draft/2019-09/schema", "description": "Add custom emotes for use in the chat.", "properties": { "twitch": { "default": {}, "properties": { "bttv": { "default": false, "title": "Enable BetterTTV emotes", "type": "boolean" }, "channels": { "default": [], "description": "Use emotes from these channel names", "items": { "type": "string" }, "title": "Channels", "type": "array" }, "clientId": { "default": null, "nullable": true, "title": "Twitch App Token: Client ID", "type": "string" }, "clientSecret": { "default": null, "nullable": true, "title": "Twitch App Token: Client Secret", "type": "string" }, "seventv": { "default": false, "title": "Enable 7TV emotes", "type": "boolean" } }, "title": "Twitch Emotes", "type": "object" } }, "required": [], "title": "Emotes", "type": "object", "uw:access": "admin", "uw:key": "u-wave:emotes" }
MIT
en
u-wave/core
a2279e4346afc08f48e8df874598f5a88a37f592
2021-06-29T08:57:07
src/schemas/definitions.json
31
2024-05-28T04:35:57.230639Z
{ "$id": "https://ns.u-wave.net/schemas/definitions.json#", "$schema": "https://json-schema.org/draft/2019-09/schema", "definitions": { "LegacyPagination": { "$comment": "This schema is used for validating query strings, so all the properties are strings", "properties": { "limit": { "pattern": "^\\d+$", "type": "string" }, "page": { "pattern": "^\\d+$", "type": "string" } }, "type": "object" }, "ObjectID": { "pattern": "^[0-9a-f]{24}$", "type": "string" }, "Pagination": { "properties": { "page": { "$comment": "This schema is used for validating query strings, so all the properties are strings", "properties": { "limit": { "pattern": "^\\d+$", "type": "string" }, "offset": { "pattern": "^\\d+$", "type": "string" } }, "type": "object" } }, "required": [ "page" ], "type": "object" }, "Username": { "maxLength": 32, "minLength": 3, "pattern": "^[^\\s\\n]+$", "type": "string" } } }
MIT
en
u-wave/core
3bf7a5e78ed02c2a10426897c250dd3d4ad0ce57
2020-08-05T13:13:01
src/schemas/socialAuth.json
31
2024-05-28T04:35:57.230639Z
{ "$id": "https://ns.u-wave.net/config/socialAuth.json#", "$schema": "http://json-schema.org/draft-07/schema", "description": "Settings for third party login integrations like Google.", "properties": { "google": { "default": {}, "dependencies": { "enabled": [ "clientID", "clientSecret" ] }, "description": "Settings for the Google authentication integration.", "properties": { "callbackURL": { "description": "The URL that Google will redirect to once a signin is complete. This URL should contain the code that finalizes the login on the \u00fcWave end.", "format": "uri-reference", "title": "Callback URL", "type": "string" }, "clientID": { "description": "The OAuth2 Client ID.", "title": "Client ID", "type": "string" }, "clientSecret": { "description": "The secret key.", "title": "Client Secret", "type": "string" }, "enabled": { "default": false, "title": "Enabled", "type": "boolean" } }, "required": [ "enabled" ], "title": "Google Authentication", "type": "object" } }, "required": [ "google" ], "title": "Social Login", "type": "object", "uw:access": "admin", "uw:key": "u-wave:socialAuth" }
MIT
en
tum-db/partitioned-filters
56c20102715a442cbec9ecb732d41de15b31c828
2021-07-23T17:36:43
benchmark/benchmark.schema.json
9
2024-05-28T04:43:14.969032Z
{ "$schema": "https://json-schema.org/draft-07/schema", "additionalItems": false, "definitions": { "benchmark": { "additionalItems": false, "properties": { "color": { "enum": [ "black", "blue", "lightblue", "green", "lightgreen", "orange", "lightorange", "red", "lightred" ], "type": "string" }, "filter": { "$ref": "#/definitions/filter" }, "marker": { "enum": [ "circle", "triangle", "square", "diamond" ], "type": "string" }, "name": { "type": "string" }, "optimization": { "$ref": "#/definitions/optimization" }, "parameter": { "$ref": "#/definitions/parameter" } }, "required": [ "name", "filter" ], "type": "object" }, "filter": { "additionalItems": false, "oneOf": [ { "properties": { "type": { "const": "Bloom", "type": "string" }, "variant": { "enum": [ "Naive32", "Naive64", "Blocked32", "Blocked64", "Blocked128", "Blocked256", "Blocked512", "Sectorized128", "Sectorized256", "Sectorized512", "Grouped2", "Grouped4", "Grouped8", "Sectorized128Vertical", "Sectorized256Vertical", "Sectorized512Vertical" ], "type": "string" } } }, { "properties": { "type": { "const": "Xor", "type": "string" }, "variant": { "enum": [ "Standard", "Fuse" ], "type": "string" } } }, { "properties": { "type": { "const": "Cuckoo", "type": "string" }, "variant": { "oneOf": [ { "enum": [ "CuckooOpt", "MortonOpt" ], "type": "string" }, { "pattern": "Standard[2-8]", "type": "string" }, { "pattern": "Morton(2|3|7|15)_[1-9]?[05]_[1-5]?[05]", "type": "string" } ] } } }, { "properties": { "type": { "const": "FastfilterBloom", "type": "string" }, "variant": { "enum": [ "Standard", "Branchless" ], "type": "string" } } }, { "properties": { "type": { "const": "FastfilterXor", "type": "string" }, "variant": { "enum": [ "Standard", "CImplementation", "Compressed" ], "type": "string" } } }, { "properties": { "type": { "const": "ImpalaBloom", "type": "string" }, "variant": { "enum": [ "Standard" ], "type": "string" } } }, { "properties": { "type": { "const": "BSDBloom", "type": "string" }, "variant": { "enum": [ "Naive32", "Blocked32", "Blocked128", "Blocked256", "Blocked512", "Sectorized128", "Sectorized256", "Sectorized512", "Grouped2", "Grouped4", "Grouped8", "Naive32Batched", "Blocked32Batched", "Blocked128Batched", "Blocked256Batched", "Blocked512Batched", "Sectorized128Batched", "Sectorized256Batched", "Sectorized512Batched", "Grouped2Batched", "Grouped4Batched", "Grouped8Batched" ], "type": "string" } } }, { "properties": { "type": { "const": "BSDCuckoo", "type": "string" }, "variant": { "enum": [ "Standard1", "Standard2", "Standard4", "Standard1Batched", "Standard2Batched", "Standard4Batched" ], "type": "string" } } }, { "properties": { "type": { "const": "EfficientCuckooFilter", "type": "string" }, "variant": { "enum": [ "Standard", "SemiSorted" ], "type": "string" } } }, { "properties": { "type": { "const": "VacuumFilter", "type": "string" }, "variant": { "enum": [ "Standard", "SemiSorted" ], "type": "string" } } }, { "properties": { "type": { "const": "AMDMortonFilter", "type": "string" }, "variant": { "enum": [ "Standard1", "Standard3", "Standard7", "Standard15" ], "type": "string" } } } ], "type": "object" }, "fixture": { "enum": [ "Construct", "Count", "MTCount", "Contains", "Partitioning", "FPR" ], "type": "string" }, "generator": { "enum": [ "Sequential", "Prime", "Random", "RandomHuge", "RandomHuge2", "Skew" ], "type": "string" }, "optimization": { "additionalItems": false, "properties": { "Addressing": { "enum": [ null, "PowerOfTwo", "Magic", "Lemire", "Vacuum", "Morton" ], "type": [ "string", "null" ] }, "Hashing": { "enum": [ null, "Identity", "Murmur", "Fasthash", "Cityhash", "TwoIndependentMultiplyShift", "SimpleTabulation", "Mul" ], "type": [ "string", "null" ] }, "MultiThreading": { "enum": [ null, "Enabled", "Disabled" ], "type": [ "string", "null" ] }, "Partitioning": { "enum": [ null, "Enabled", "Disabled" ], "type": [ "string", "null" ] }, "RegisterSize": { "enum": [ null, "_32bit", "_64bit" ], "type": [ "string", "null" ] }, "SIMD": { "enum": [ null, "Scalar", "AVX2", "AVX512" ], "type": [ "string", "null" ] } }, "type": "object" }, "parameter": { "additionalItems": false, "properties": { "k": { "items": { "maximum": 40, "minimum": 1, "type": "integer" }, "minItems": 1, "type": [ "array", "null" ] }, "n_elements": { "items": { "oneOf": [ { "maximum": 1000000000, "minimum": 0, "type": "number" }, { "additionalItems": false, "properties": { "build": { "maximum": 1000000000, "minimum": 0, "type": "number" }, "lookup": { "maximum": 1000000000, "minimum": 0, "type": "number" }, "shared": { "maximum": 100, "minimum": 0, "type": "number" } }, "required": [ "build", "lookup", "shared" ], "type": "object" } ] }, "minItems": 1, "type": [ "array", "null" ] }, "n_partitions": { "items": { "enum": [ 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384 ], "type": "integer" }, "minItems": 1, "type": [ "array", "null" ] }, "n_threads": { "items": { "maximum": 80, "minimum": 1, "type": "integer" }, "minItems": 1, "type": [ "array", "null" ] }, "s": { "items": { "type": "integer" }, "minItems": 1, "type": [ "array", "null" ] } }, "type": "object" }, "visualization": { "additionalProperties": false, "if": { "properties": { "enable": { "const": true } } }, "properties": { "chart": { "enum": [ "line", "bar" ], "type": "string" }, "enable": { "default": false, "type": "boolean" }, "x-axis": { "enum": [ "k", "s", "n_partitions", "n_threads", "n_elements_build", "n_elements_lookup", "shared_elements" ], "type": "string" }, "y-axis": { "items": { "default": [], "enum": [ "time", "speedup", "throughput", "DTLB-misses", "ITLB-misses", "L1D-misses", "L1I-misses", "LLC-misses", "branch-misses", "cycles", "instructions", "task-clock", "avg_size", "size", "bits", "retries", "fpr" ], "type": "string" }, "type": "array" } }, "required": [ "enable" ], "then": { "else": { "if": { "properties": { "chart": { "const": "bar" } } }, "then": { "required": [ "y-axis" ] } }, "if": { "properties": { "chart": { "const": "line" } } }, "required": [ "chart" ], "then": { "required": [ "x-axis", "y-axis" ] } }, "type": "object" } }, "properties": { "benchmarks": { "items": { "$ref": "#/definitions/benchmark" }, "minItems": 1, "type": "array" }, "fixture": { "$ref": "#/definitions/fixture" }, "generator": { "$ref": "#/definitions/generator" }, "iterations": { "maximum": 1000, "minimum": 1, "type": "integer" }, "name": { "type": "string" }, "optimization": { "allOf": [ { "$ref": "#/definitions/optimization" }, { "required": [ "Addressing", "Hashing", "Partitioning", "RegisterSize", "SIMD", "EarlyStopping", "MultiThreading" ] } ] }, "parameter": { "allOf": [ { "$ref": "#/definitions/parameter" }, { "required": [ "k", "s", "n_threads", "n_partitions" ] } ] }, "preprocess": { "enum": [ "preprocess_s", "preprocess_s_morton", "preprocess_n_elements_log", "preprocess_s_and_n_elements_log" ], "type": "string" }, "threads": { "maximum": 1000, "minimum": 1, "type": "integer" }, "visualization": { "$ref": "#/definitions/visualization" } }, "required": [ "name", "iterations", "generator", "fixture", "visualization", "optimization", "parameter", "benchmarks" ], "title": "Benchmark Schema", "type": "object" }
MIT
en
go-gremlins/gremlins
da8731ea07c90c061a93b2ba0ac87a7c91ab722b
2022-09-09T07:30:02
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-loopctrl": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-loopctrl Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "output": { "default": "", "description": "The output file for machine readable results", "examples": [ "output.json" ], "title": "Output", "type": "string" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
go-gremlins/gremlins
d9821c783638446cc943f14eaaa633b4e9c82f51
2022-10-02T05:41:17
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-assignments": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-assignments Schema", "type": "object" }, "invert-bitwise": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-bitwise Schema", "type": "object" }, "invert-loopctrl": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-loopctrl Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" }, "remove-self-assignments": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The remove-self-assignments Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "coverpkg": { "default": "", "description": "Apply coverage analysis in each test to packages matching the patterns", "examples": [ "./internal/log,./pkg/..." ], "title": "Cover packages", "type": "string" }, "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "output": { "default": "", "description": "The output file for machine readable results", "examples": [ "output.json" ], "title": "Output", "type": "string" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
go-gremlins/gremlins
a3cee21960678cbc338acc3046a502bab6329a85
2022-09-23T06:36:36
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-assignments": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-assignments Schema", "type": "object" }, "invert-loopctrl": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-loopctrl Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "coverpkg": { "default": "", "description": "Apply coverage analysis in each test to packages matching the patterns", "examples": [ "./internal/log,./pkg/..." ], "title": "Cover packages", "type": "string" }, "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "output": { "default": "", "description": "The output file for machine readable results", "examples": [ "output.json" ], "title": "Output", "type": "string" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
go-gremlins/gremlins
ec07e489fffbb98f5ca74109b3e680fb1c5a04a9
2022-09-20T05:46:15
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-assignments": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-assignments Schema", "type": "object" }, "invert-loopctrl": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-loopctrl Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "output": { "default": "", "description": "The output file for machine readable results", "examples": [ "output.json" ], "title": "Output", "type": "string" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
go-gremlins/gremlins
c2f59bbe0bd57eee738d67b29f46ab4c075a366d
2022-08-04T11:19:35
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
go-gremlins/gremlins
dab849da5547861cf177b81defa8cd8a41325be7
2022-10-04T19:26:24
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-assignments": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-assignments Schema", "type": "object" }, "invert-bitwise": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-bitwise Schema", "type": "object" }, "invert-bwassign": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-bwassign Schema", "type": "object" }, "invert-loopctrl": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-loopctrl Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" }, "remove-self-assignments": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The remove-self-assignments Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "coverpkg": { "default": "", "description": "Apply coverage analysis in each test to packages matching the patterns", "examples": [ "./internal/log,./pkg/..." ], "title": "Cover packages", "type": "string" }, "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "output": { "default": "", "description": "The output file for machine readable results", "examples": [ "output.json" ], "title": "Output", "type": "string" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
go-gremlins/gremlins
cb67692905d0cd047165cb10861f6d764d4e27ec
2022-09-27T07:36:21
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-assignments": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-assignments Schema", "type": "object" }, "invert-bitwise": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-bitwise Schema", "type": "object" }, "invert-loopctrl": { "properties": { "enabled": { "default": false, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-loopctrl Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "coverpkg": { "default": "", "description": "Apply coverage analysis in each test to packages matching the patterns", "examples": [ "./internal/log,./pkg/..." ], "title": "Cover packages", "type": "string" }, "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "output": { "default": "", "description": "The output file for machine readable results", "examples": [ "output.json" ], "title": "Output", "type": "string" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
go-gremlins/gremlins
328abfd30dcffdf860a5bfb2500d54c3659d84f8
2022-08-06T05:45:14
docs/docs/schema/configuration.json
158
2024-05-27T05:55:28.833359Z
{ "$id": "https://gremlins.dev/schema/configuration.json", "$schema": "https://json-schema.org/draft-07/schema", "properties": { "mutants": { "properties": { "arithmetic-base": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The arithmetic-base Schema", "type": "object" }, "conditionals-boundary": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-boundary Schema", "type": "object" }, "conditionals-negation": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The conditionals-negation Schema", "type": "object" }, "increment-decrement": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The increment-decrement Schema", "type": "object" }, "invert-negatives": { "properties": { "enabled": { "default": true, "title": "The enabled Schema", "type": "boolean" } }, "required": [ "enabled" ], "title": "The invert-negatives Schema", "type": "object" } }, "title": "Supported mutants", "type": "object" }, "unleash": { "properties": { "dry-run": { "default": false, "description": "Searches for mutants but doesn't execute the tests", "title": "Dry-run mode", "type": "boolean" }, "output": { "default": "", "description": "The output file for machine readable results", "examples": [ "output.json" ], "title": "Output", "type": "string" }, "silent": { "default": false, "description": "All the STDOUT output is suppressed", "title": "Silent mode", "type": "boolean" }, "tags": { "default": "", "description": "The build tags for the Go module to be tested", "examples": [ "tag1,tag2,tag4" ], "title": "Tags", "type": "string" }, "threshold": { "default": {}, "description": "The thresholds under which Gremlins exits with an error", "properties": { "efficacy": { "default": 0, "description": "Test efficacy threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Test efficacy", "type": "number" }, "mutant-coverage": { "default": 0, "description": "Mutant coverage threshold", "examples": [ 81.2, 10 ], "maximum": 100, "minimum": 0, "title": "Mutant-coverage", "type": "number" } }, "required": [], "title": "Thresholds", "type": "object" } }, "type": "object" } }, "title": "The Gremlins configuration schema", "type": "object" }
Apache-2.0
en
json-schema-org/JSON-Schema-Test-Suite
8e2a05a99cd49b38e05bb40cf10b5e70a3c61cbe
2020-03-23T19:21:33
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" } }, "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "schema": {}, "tests": { "items": { "additionalProperties": false, "properties": { "data": {}, "description": { "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
42ba0f9e7927895159efeab191a533dbe133bbb7
2016-07-07T18:20:00
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-03/schema#", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "required": true, "type": "string" }, "schema": { "required": true }, "tests": { "items": { "additionalProperties": false, "properties": { "data": { "required": true }, "description": { "required": true, "type": "string" }, "valid": { "required": true, "type": "boolean" } }, "type": "object" }, "minItems": 1, "type": "array" } }, "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
3379127404fddfe438888fd67f9e6703d8d748d2
2020-03-21T19:12:20
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "https://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" } }, "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "schema": {}, "tests": { "items": { "additionalProperties": false, "properties": { "data": {}, "description": { "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
59181b43d5c5d54003412ac25b3697a30b4e500f
2019-07-20T23:20:59
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" } }, "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "schema": {}, "tests": { "items": { "additionalProperties": false, "properties": { "data": {}, "description": { "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
2ba7a769dddc327c9e35599b43d10a3265fbc34e
2020-05-19T16:19:16
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-06/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "description": "A single test", "properties": { "comment": { "description": "Any additional comments about the test", "type": "string" }, "data": { "description": "This is the instance to be validated against the schema in \"schema\"." }, "description": { "description": "The test description", "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "description": "Schema for tests", "items": { "additionalProperties": false, "minItems": 1, "properties": { "comment": { "description": "Any additional comments about the test set", "type": "string" }, "description": { "description": "The test set description", "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": { "description": "This should be a valid schema. This should be a ref to a meta-schema if schema keywords need testing." }, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
0a0f0cd1b5cc7af1fc826bc0f58d7fc310b0500d
2020-04-27T03:20:32
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "description": "A single test", "properties": { "data": {}, "description": { "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "description": "Schema for tests", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": {}, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
41732dbd096cadb67ed71052b2ec27d99e0a84ae
2020-04-27T03:20:32
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "properties": { "data": {}, "description": { "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": {}, "tests": { "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
9ee9eff10edd8d1c548aa817d12bdaec292fae77
2020-04-27T03:20:32
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "description": "A single test", "properties": { "data": {}, "description": { "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "description": "Schema for tests", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": {}, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
2b536c0280cd48f79c23ebe9d9c2d739d670de43
2022-06-30T21:05:32
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$defs": { "test": { "additionalProperties": false, "description": "A single test", "properties": { "comment": { "description": "Any additional comments about the test", "type": "string" }, "data": { "description": "The instance which should be validated against the schema in \"schema\"." }, "description": { "description": "The test description, briefly explaining which behavior it exercises", "type": "string" }, "valid": { "description": "Whether the validation process of this instance should consider the instance valid or not", "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "description": "A schema for files contained within this suite", "items": { "additionalProperties": false, "description": "An individual test case, containing multiple tests of a single schema's behavior", "properties": { "comment": { "description": "Any additional comments about the test case", "type": "string" }, "description": { "description": "The test case description", "type": "string" }, "schema": { "description": "A valid JSON Schema (one written for the corresponding version directory that the file sits within)." }, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/$defs/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "minItems": 1, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
240fbf6db667a1a3716aa6c0235b14a298d8c454
2020-04-29T11:06:54
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-06/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "description": "A single test", "properties": { "data": {}, "description": { "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "description": "Schema for tests", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": { "description": "This should be a valid schema. This should be a ref to a meta-schema if schema keywords need testing." }, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
e1139a31c69e683ac4c4f3ddbd6cf8383406ac38
2017-02-15T20:54:50
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "schema": {}, "tests": { "items": { "additionalProperties": false, "properties": { "data": {}, "description": { "type": "string" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
8f8e90651ed3cf2f74e810cd3f05da10ded308cf
2020-04-29T11:06:54
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-06/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "description": "A single test", "properties": { "data": {}, "description": { "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "description": "Schema for tests", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": {}, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
2fc576e7438eaba67cd0c18a50e50e5fbdd060dc
2020-04-27T03:20:32
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" } }, "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": {}, "tests": { "items": { "additionalProperties": false, "properties": { "data": {}, "description": { "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
bb80ebe510eb137f55696bb309425aa4a2420905
2020-04-27T03:20:32
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "description": "A single test", "properties": { "data": {}, "description": { "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "description": "Schema for tests", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": {}, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
e1f870b1c9ad74a81b422ca0816964e27bc56d39
2020-05-02T15:43:32
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-06/schema#", "definitions": { "outputItem": { "properties": { "absoluteKeywordLocation": { "format": "uri", "type": "string" }, "annotations": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "errors": { "items": { "$ref": "#/definitions/outputItem" }, "type": "array" }, "instanceLocation": { "type": "string" }, "keywordLocation": { "type": "string" }, "valid": { "type": "boolean" } }, "type": "object" }, "test": { "additionalProperties": false, "description": "A single test", "properties": { "comment": { "description": "Any additional comments about the test", "type": "string" }, "data": {}, "description": { "description": "The test description", "type": "string" }, "id": { "description": "Uniquely identifies a single test", "format": "uri", "type": "string" }, "output": { "properties": { "basic": { "$ref": "#/definitions/outputItem" }, "detailed": { "$ref": "#/definitions/outputItem" }, "verbose": { "$ref": "#/definitions/outputItem" } }, "required": [ "basic", "detailed", "verbose" ], "type": "object" }, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" } }, "description": "Schema for tests", "items": { "additionalProperties": false, "minItems": 1, "properties": { "comment": { "description": "Any additional comments about the test set", "type": "string" }, "description": { "description": "The test set description", "type": "string" }, "id": { "description": "Uniquely identifies a set of tests", "format": "uri", "type": "string" }, "schema": { "description": "This should be a valid schema. This should be a ref to a meta-schema if schema keywords need testing." }, "tests": { "description": "A set of related tests all using the same schema", "items": { "$ref": "#/definitions/test" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
json-schema-org/JSON-Schema-Test-Suite
664aa98af4e3964acfcae147b0c9d93fe6c7f845
2019-07-13T02:23:07
test-schema.json
596
2024-05-29T09:48:23.591327Z
{ "$schema": "http://json-schema.org/draft-04/schema#", "items": { "additionalProperties": false, "minItems": 1, "properties": { "description": { "type": "string" }, "schema": {}, "tests": { "items": { "additionalProperties": false, "properties": { "data": {}, "description": { "type": "string" }, "output": {}, "valid": { "type": "boolean" } }, "required": [ "description", "data", "valid" ], "type": "object" }, "minItems": 1, "type": "array" } }, "required": [ "description", "schema", "tests" ], "type": "object" }, "type": "array" }
MIT
en
SamsDRGMods/DRGLib
79c16205a62439e57a3810c0433a894a2e01a1b7
2022-10-21T15:35:04
Documents/SaveSchema.json
15
2024-05-28T04:19:28.818656Z
{ "$defs": { "PropertyType": { "description": "Defines how to interpret the value of this property", "enum": [ "Boolean", "String", "Int", "Float", "Byte", "Color", "Custom", "Array", "JSON", "UIDummy", "AnchorData" ], "examples": [ "Boolean", "String", "Int", "Float", "Byte", "Color", "Custom", "Array", "JSON", "UIDummy", "AnchorData" ], "type": "string" }, "SaveProperty": { "properties": { "PropertyID": { "default": "", "description": "The internal (non user-facing) name for this property", "type": "string" }, "PropertyType": { "$ref": "#/$defs/PropertyType" }, "SettingsOptions": { "$ref": "#/$defs/SettingsOptions" }, "Value": { "description": "Holds the value for this property" } }, "required": [ "PropertyID", "PropertyType" ], "type": "object" }, "SettingsOptions": { "Description": "Used to define how the settings widgets may appear ingame", "default": {}, "properties": { "Description": { "default": "", "description": "Provides additional details on what this property does to the end-user", "type": "string" }, "FriendlyName": { "default": "", "description": "The user-facing name for the property", "type": "string" }, "HideIngame": { "Description": "Whether this property should be shown when the save object is in a settings page", "default": true, "type": "boolean" }, "SortPriority": { "default": 0, "description": "Where in the settings page this object should be. ", "type": "integer" }, "SpecialSettingsData": { "description": "Used to hold any additional special key/value pairs as outlined in https://github.com/SamsDRGMods/DRGLib/tree/main/DRGLib%20UE%20project/Content/DRGLib/DRGLibSettings/SpecialSettingsDataKeys.md", "properties": { "AllowSizeModification": { "default": true, "description": "Used by the AnchorData property to determine whether the end user is permitted to edit the size parameters", "type": "boolean" }, "HostFontSize": { "default": 18, "minimum": 1, "type": "integer" }, "OpacityChangeable": { "default": true, "description": "Used by the Color property to decide whether the end user can edit the opacity of the color in a settings page", "type": "boolean" }, "PreferredWidget": { "description": "Used to override a properties automatically picked widget when allowed. Depending on the property different values are required\n\"FloatProperty: 0=spinbox, 1=slider. If property is unbounded spinbox is always used.", "type": "integer" }, "PreviewWidget": { "default": "/Game/DRGLib/UITemplates/HUDPositionSelector/LIB_W_HudPosDefaultPreview.LIB_W_HudPosDefaultPreview_C", "description": "Used by the AnchorData property to override the preview widget with something custom. format: \"/Game/%path%/%classname%.%classname%_C\"", "type": "string" }, "WidgetFontSize": { "default": 12, "minimum": 1, "type": "integer" } }, "type": "object" }, "Subsection": { "default": "", "description": "The subsection this property belongs to", "type": "string" }, "WidgetColorInherit": { "default": true, "description": "Defines whether the widget will use the same color as the main page", "type": "boolean" }, "WidgetColorSpecifiedColor": { "default": "(R=1.0,G=0.333333,B=0.0,A=1.0)", "description": "Used to define a color for the Widget to use if WidgetColorInherit is set to false. Uses the default UE LinearColor ToString method", "examples": [ "(R=1.000000,G=0.333333,B=0.000000,A=1.000000)" ], "type": "string" }, "WidgetHost": { "default": "Horizontal", "description": "The host for the settings widget", "enum": [ "Basic", "Vertical", "Horizontal", "Expanding" ], "type": "string" } }, "required": [ "HideIngame", "Subsection", "FriendlyName" ], "type": "object" }, "Vector2D": { "properties": { "X": { "default": 0, "type": "number" }, "Y": { "default": 0, "type": "number" } }, "required": [ "X", "Y" ], "type": "object" } }, "$id": "https://raw.githubusercontent.com/SamsDRGMods/DRGLib/main/Documents/SaveSchema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "default": {}, "properties": { "ObjectVersion": { "default": 0, "description": "Used to track revisions to the save object. Allows for adding specific behavior when upgrading save versions", "type": "integer" }, "Properties": { "default": [], "description": "The properties that the save object will hold", "items": { "oneOf": [ { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Boolean", "Value": false }, "properties": { "PropertyType": { "const": "Boolean", "default": "Boolean" }, "Value": { "default": false, "type": "boolean" } }, "title": "Boolean property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "String", "Value": "" }, "properties": { "PropertyType": { "const": "String", "default": "String" }, "Value": { "default": "", "type": "string" } }, "title": "String property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Int", "Value": 0 }, "properties": { "PropertyType": { "const": "Int", "default": "Int" }, "Value": { "properties": { "IsBounded": { "default": false, "type": "boolean" }, "LowerBound": { "type": "integer" }, "UpperBound": { "type": "integer" }, "Value": { "default": 0, "type": "integer" } }, "required": [ "Value", "IsBounded" ], "type": "object" } }, "title": "Int property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Float", "Value": 0 }, "properties": { "PropertyType": { "const": "Float", "default": "Float" }, "Value": { "properties": { "IsBounded": { "default": false, "type": "boolean" }, "LowerBound": { "type": "number" }, "UpperBound": { "type": "number" }, "Value": { "default": 0, "type": "number" } }, "required": [ "Value", "IsBounded" ], "type": "object" } }, "title": "Float property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Byte", "Value": 0 }, "properties": { "PropertyType": { "const": "Byte", "default": "Byte" }, "Value": { "default": 0, "maximum": 255, "minimum": 0, "type": "integer" } }, "title": "Byte property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Color", "Value": { "Alpha": 1.0, "Blue": 0.0, "Green": 0.333, "Red": 1.0 } }, "properties": { "PropertyType": { "const": "Color", "default": "Color" }, "Value": { "properties": { "Alpha": { "default": 1.0, "type": "number" }, "Blue": { "default": 0.0, "type": "number" }, "Green": { "default": 0.333, "type": "number" }, "Red": { "default": 1.0, "type": "number" } }, "required": [ "Red", "Green", "Blue", "Alpha" ], "type": "object" } }, "title": "Color property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Custom", "Value": {} }, "properties": { "PropertyType": { "const": "Custom", "default": "Custom" }, "Value": { "properties": { "CustomDataClass": { "type": "string" }, "CustomValue": {} }, "required": [ "CustomDataClass", "CustomValue" ], "type": "object" } }, "title": "Custom property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Array", "Value": {} }, "properties": { "PropertyType": { "const": "Array", "default": "Array" }, "Value": { "properties": { "ValueItemClass": { "type": "string" }, "Values": { "items": { "$ref": "#/$defs/SaveProperty" }, "type": "array" } }, "required": [ "ValueItemClass", "Values" ], "type": "object" } }, "title": "Array property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "JSON", "Value": {} }, "properties": { "PropertyType": { "const": "JSON", "default": "JSON" }, "Value": {} }, "title": "JSON property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "UIDummy", "Value": {} }, "properties": { "PropertyType": { "const": "UIDummy", "default": "UIDummy" }, "Value": { "properties": { "DummyOptions": { "properties": { "IKSAction": { "description": "defines the custom input action managed by the InputKeySelector dummy", "type": "string" }, "SpacerHeight": { "description": "defines the height of the VerticalSpacer dummy", "minimum": 0, "type": "integer" }, "TitleFontSize": { "description": "defines the font size used by the Title dummy", "minimum": 1, "type": "integer" }, "TitleText": { "description": "defines the text content of the Title dummy", "type": "string" } }, "type": "object" }, "DummyType": { "enum": [ "VerticalSpacer", "HorizontalRule", "Title", "InputKeySelector", "Subsection", "WidgetHost" ], "examples": [ "VerticalSpacer", "HorizontalRule", "Title", "InputKeySelector", "Subsection", "WidgetHost" ], "type": "string" } }, "required": [ "DummyType" ], "type": "object" } }, "title": "UIDummy property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "AnchorData", "Value": false }, "properties": { "PropertyType": { "const": "AnchorData", "default": "AnchorData" }, "Value": { "default": { "Alignment": { "X": 0.5, "Y": 0.5 }, "Anchors": { "Maximum": { "X": 0.5, "Y": 0.5 }, "Minimum": { "X": 0.5, "Y": 0.5 } }, "Offsets": { "PositionX": 0, "PositionY": 0, "SizeX": 0, "SizeY": 0 } }, "properties": { "Alignment": { "$ref": "#/$defs/Vector2D", "default": { "X": 0.5, "Y": 0.5 } }, "Anchors": { "default": { "Maximum": { "X": 0.5, "Y": 0.5 }, "Minimum": { "X": 0.5, "Y": 0.5 } }, "properties": { "Maximum": { "$ref": "#/$defs/Vector2D" }, "Minimum": { "$ref": "#/$defs/Vector2D" } }, "required": [ "Minimum", "Maximum" ], "type": "object" }, "Offsets": { "default": { "PositionX": 0, "PositionY": 0, "SizeX": 0, "SizeY": 0 }, "properties": { "PositionX": { "default": 0.0, "type": "number" }, "PositionY": { "default": 0.0, "type": "number" }, "SizeX": { "default": 0.0, "type": "number" }, "SizeY": { "default": 0.0, "type": "number" } }, "required": [ "PositionX", "PositionY", "SizeX", "SizeY" ], "type": "object" } }, "required": [ "Offsets", "Anchors", "Alignment" ], "type": "object" } }, "title": "AnchorData property" } ] }, "type": "array" }, "SaveLocation": { "default": "", "description": "the path to the save location", "type": "string" } }, "required": [ "ObjectVersion", "SaveLocation", "Properties" ], "title": "DRGLib save object", "type": "object" }
MIT
en
SamsDRGMods/DRGLib
88c4a548ba4170ea900551a15d6f0571887dcefd
2022-10-05T23:26:30
Documents/SaveSchema.json
15
2024-05-28T04:19:28.818656Z
{ "$defs": { "PropertyType": { "description": "Defines how to interpret the value of this property", "enum": [ "Boolean", "String", "Int", "Float", "Byte", "Color", "Custom", "Array", "JSON", "UIDummy", "AnchorData" ], "examples": [ "Boolean", "String", "Int", "Float", "Byte", "Color", "Custom", "Array", "JSON", "UIDummy", "AnchorData" ], "type": "string" }, "SaveProperty": { "properties": { "PropertyID": { "default": "", "description": "The internal (non user-facing) name for this property", "type": "string" }, "PropertyType": { "$ref": "#/$defs/PropertyType" }, "SettingsOptions": { "$ref": "#/$defs/SettingsOptions" }, "Value": { "description": "Holds the value for this property" } }, "required": [ "PropertyID", "PropertyType" ], "type": "object" }, "SettingsOptions": { "Description": "Used to define how the settings widgets may appear ingame", "default": {}, "properties": { "Description": { "default": "", "description": "Provides additional details on what this property does to the end-user", "type": "string" }, "FriendlyName": { "default": "", "description": "The user-facing name for the property", "type": "string" }, "HideIngame": { "Description": "Whether this property should be shown when the save object is in a settings page", "default": true, "type": "boolean" }, "SortPriority": { "default": 0, "description": "Where in the settings page this object should be. ", "type": "integer" }, "SpecialSettingsData": { "description": "Used to hold any additional special key/value pairs as outlined in https://github.com/SamsDRGMods/DRGLib/tree/main/DRGLib%20UE%20project/Content/DRGLib/DRGLibSettings/SpecialSettingsDataKeys.md", "properties": { "HostFontSize": { "default": 18, "minimum": 1, "type": "integer" }, "OpacityChangeable": { "default": true, "description": "Used by the Color property to decide whether the end user can edit the opacity of the color in a settings page", "type": "boolean" }, "PreferredWidget": { "description": "Used to override a properties automatically picked widget when allowed. Depending on the property different values are required\n\"FloatProperty: 0=spinbox, 1=slider. If property is unbounded spinbox is always used.", "type": "integer" }, "WidgetFontSize": { "default": 12, "minimum": 1, "type": "integer" } }, "type": "object" }, "Subsection": { "default": "", "description": "The subsection this property belongs to", "type": "string" }, "WidgetColorInherit": { "default": true, "description": "Defines whether the widget will use the same color as the main page", "type": "boolean" }, "WidgetColorSpecifiedColor": { "default": "(R=1.0,G=0.333333,B=0.0,A=1.0)", "description": "Used to define a color for the Widget to use if WidgetColorInherit is set to false. Uses the default UE LinearColor ToString method", "examples": [ "(R=1.000000,G=0.333333,B=0.000000,A=1.000000)" ], "type": "string" }, "WidgetHost": { "default": "Horizontal", "description": "The host for the settings widget", "enum": [ "Basic", "Vertical", "Horizontal", "Expanding" ], "type": "string" } }, "required": [ "HideIngame", "Subsection", "FriendlyName" ], "type": "object" }, "Vector2D": { "properties": { "X": { "default": 0, "type": "number" }, "Y": { "default": 0, "type": "number" } }, "required": [ "X", "Y" ], "type": "object" } }, "$id": "https://raw.githubusercontent.com/SamsDRGMods/DRGLib/main/Documents/SaveSchema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "default": {}, "properties": { "ObjectVersion": { "default": 0, "description": "Used to track revisions to the save object. Allows for adding specific behavior when upgrading save versions", "type": "integer" }, "Properties": { "default": [], "description": "The properties that the save object will hold", "items": { "oneOf": [ { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Boolean", "Value": false }, "properties": { "PropertyType": { "const": "Boolean", "default": "Boolean" }, "Value": { "default": false, "type": "boolean" } }, "title": "Boolean property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "String", "Value": "" }, "properties": { "PropertyType": { "const": "String", "default": "String" }, "Value": { "default": "", "type": "string" } }, "title": "String property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Int", "Value": 0 }, "properties": { "PropertyType": { "const": "Int", "default": "Int" }, "Value": { "properties": { "IsBounded": { "default": false, "type": "boolean" }, "LowerBound": { "type": "integer" }, "UpperBound": { "type": "integer" }, "Value": { "default": 0, "type": "integer" } }, "required": [ "Value", "IsBounded" ], "type": "object" } }, "title": "Int property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Float", "Value": 0 }, "properties": { "PropertyType": { "const": "Float", "default": "Float" }, "Value": { "properties": { "IsBounded": { "default": false, "type": "boolean" }, "LowerBound": { "type": "number" }, "UpperBound": { "type": "number" }, "Value": { "default": 0, "type": "number" } }, "required": [ "Value", "IsBounded" ], "type": "object" } }, "title": "Float property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Byte", "Value": 0 }, "properties": { "PropertyType": { "const": "Byte", "default": "Byte" }, "Value": { "default": 0, "maximum": 255, "minimum": 0, "type": "integer" } }, "title": "Byte property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Color", "Value": { "Alpha": 1.0, "Blue": 0.0, "Green": 0.333, "Red": 1.0 } }, "properties": { "PropertyType": { "const": "Color", "default": "Color" }, "Value": { "properties": { "Alpha": { "default": 1.0, "type": "number" }, "Blue": { "default": 0.0, "type": "number" }, "Green": { "default": 0.333, "type": "number" }, "Red": { "default": 1.0, "type": "number" } }, "required": [ "Red", "Green", "Blue", "Alpha" ], "type": "object" } }, "title": "Color property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Custom", "Value": {} }, "properties": { "PropertyType": { "const": "Custom", "default": "Custom" }, "Value": { "properties": { "CustomDataClass": { "type": "string" }, "CustomValue": {} }, "required": [ "CustomDataClass", "CustomValue" ], "type": "object" } }, "title": "Custom property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Array", "Value": {} }, "properties": { "PropertyType": { "const": "Array", "default": "Array" }, "Value": { "properties": { "ValueItemClass": { "type": "string" }, "Values": { "items": { "$ref": "#/$defs/SaveProperty" }, "type": "array" } }, "required": [ "ValueItemClass", "Values" ], "type": "object" } }, "title": "Array property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "JSON", "Value": {} }, "properties": { "PropertyType": { "const": "JSON", "default": "JSON" }, "Value": {} }, "title": "JSON property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "UIDummy", "Value": {} }, "properties": { "PropertyType": { "const": "UIDummy", "default": "UIDummy" }, "Value": { "properties": { "DummyOptions": { "properties": { "IKSAction": { "description": "defines the custom input action managed by the InputKeySelector dummy", "type": "string" }, "SpacerHeight": { "description": "defines the height of the VerticalSpacer dummy", "minimum": 0, "type": "integer" }, "TitleFontSize": { "description": "defines the font size used by the Title dummy", "minimum": 1, "type": "integer" }, "TitleText": { "description": "defines the text content of the Title dummy", "type": "string" } }, "type": "object" }, "DummyType": { "enum": [ "VerticalSpacer", "HorizontalRule", "Title", "InputKeySelector", "Subsection", "WidgetHost" ], "examples": [ "VerticalSpacer", "HorizontalRule", "Title", "InputKeySelector", "Subsection", "WidgetHost" ], "type": "string" } }, "required": [ "DummyType" ], "type": "object" } }, "title": "UIDummy property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "AnchorData", "Value": false }, "properties": { "PropertyType": { "const": "AnchorData", "default": "AnchorData" }, "Value": { "default": { "Alignment": { "X": 0.5, "Y": 0.5 }, "Anchors": { "Maximum": { "X": 0.5, "Y": 0.5 }, "Minimum": { "X": 0.5, "Y": 0.5 } }, "Offsets": { "PositionX": 0, "PositionY": 0, "SizeX": 0, "SizeY": 0 } }, "properties": { "Alignment": { "$ref": "#/$defs/Vector2D", "default": { "X": 0.5, "Y": 0.5 } }, "Anchors": { "default": { "Maximum": { "X": 0.5, "Y": 0.5 }, "Minimum": { "X": 0.5, "Y": 0.5 } }, "properties": { "Maximum": { "$ref": "#/$defs/Vector2D" }, "Minimum": { "$ref": "#/$defs/Vector2D" } }, "required": [ "Minimum", "Maximum" ], "type": "object" }, "Offsets": { "default": { "PositionX": 0, "PositionY": 0, "SizeX": 0, "SizeY": 0 }, "properties": { "PositionX": { "default": 0.0, "type": "number" }, "PositionY": { "default": 0.0, "type": "number" }, "SizeX": { "default": 0.0, "type": "number" }, "SizeY": { "default": 0.0, "type": "number" } }, "required": [ "PositionX", "PositionY", "SizeX", "SizeY" ], "type": "object" } }, "required": [ "Offsets", "Anchors", "Alignment" ], "type": "object" } }, "title": "AnchorData property" } ] }, "type": "array" }, "SaveLocation": { "default": "", "description": "the path to the save location", "type": "string" } }, "required": [ "ObjectVersion", "SaveLocation", "Properties" ], "title": "DRGLib save object", "type": "object" }
MIT
en
SamsDRGMods/DRGLib
7198ace87de1b6b5e82832ec8c8e3399185ab4a5
2022-07-23T15:48:11
Documents/SaveSchema.json
15
2024-05-28T04:19:28.818656Z
{ "$defs": { "PropertyType": { "description": "Defines how to interpret the value of this property", "enum": [ "Boolean", "String", "Int", "Float", "Byte", "Color", "Custom", "Array", "JSON", "UIDummy" ], "examples": [ "Boolean", "String", "Int", "Float", "Byte", "Color", "Custom", "Array", "JSON", "UIDummy" ], "type": "string" }, "SaveProperty": { "properties": { "PropertyID": { "default": "", "description": "The internal (non user-facing) name for this property", "type": "string" }, "PropertyType": { "$ref": "#/$defs/PropertyType" }, "SettingsOptions": { "$ref": "#/$defs/SettingsOptions" }, "Value": { "description": "Holds the value for this property" } }, "required": [ "PropertyID", "PropertyType" ], "type": "object" }, "SettingsOptions": { "Description": "Used to define how the settings widgets may appear ingame", "default": {}, "properties": { "Description": { "default": "", "description": "Provides additional details on what this property does to the end-user", "type": "string" }, "FriendlyName": { "default": "", "description": "The user-facing name for the property", "type": "string" }, "HideIngame": { "Description": "Whether this property should be shown when the save object is in a settings page", "default": true, "type": "boolean" }, "SortPriority": { "default": 0, "description": "Where in the settings page this object should be. ", "type": "integer" }, "SpecialSettingsData": { "description": "Used to hold any additional special key/value pairs as outlined in https://github.com/SamsDRGMods/DRGLib/tree/main/DRGLib%20UE%20project/Content/DRGLib/DRGLibSettings/SpecialSettingsDataKeys.md", "properties": { "HostFontSize": { "default": 18, "minimum": 1, "type": "integer" }, "OpacityChangeable": { "default": true, "description": "Used by the Color property to decide whether the end user can edit the opacity of the color in a settings page", "type": "boolean" }, "PreferredWidget": { "description": "Used to override a properties automatically picked widget when allowed. Depending on the property different values are required\n\"FloatProperty: 0=spinbox, 1=slider. If property is unbounded spinbox is always used.", "type": "integer" }, "WidgetFontSize": { "default": 12, "minimum": 1, "type": "integer" } }, "type": "object" }, "Subsection": { "default": "", "description": "The subsection this property belongs to", "type": "string" }, "WidgetColorInherit": { "default": true, "description": "Defines whether the widget will use the same color as the main page", "type": "boolean" }, "WidgetColorSpecifiedColor": { "default": "(R=1.0,G=0.333333,B=0.0,A=1.0)", "description": "Used to define a color for the Widget to use if WidgetColorInherit is set to false. Uses the default UE LinearColor ToString method", "examples": [ "(R=1.000000,G=0.333333,B=0.000000,A=1.000000)" ], "type": "string" }, "WidgetHost": { "default": "Horizontal", "description": "The host for the settings widget", "enum": [ "Basic", "Vertical", "Horizontal", "Expanding" ], "type": "string" } }, "required": [ "HideIngame", "Subsection", "FriendlyName" ], "type": "object" } }, "$id": "https://raw.githubusercontent.com/SamsDRGMods/DRGLib/main/Documents/SaveSchema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "default": {}, "properties": { "ObjectVersion": { "default": 0, "description": "Used to track revisions to the save object. Allows for adding specific behavior when upgrading save versions", "type": "integer" }, "Properties": { "default": [], "description": "The properties that the save object will hold", "items": { "oneOf": [ { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Boolean", "Value": false }, "properties": { "PropertyType": { "const": "Boolean", "default": "Boolean" }, "Value": { "default": false, "type": "boolean" } }, "title": "Boolean property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "String", "Value": "" }, "properties": { "PropertyType": { "const": "String", "default": "String" }, "Value": { "default": "", "type": "string" } }, "title": "String property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Int", "Value": 0 }, "properties": { "PropertyType": { "const": "Int", "default": "Int" }, "Value": { "properties": { "IsBounded": { "default": false, "type": "boolean" }, "LowerBound": { "type": "integer" }, "UpperBound": { "type": "integer" }, "Value": { "default": 0, "type": "integer" } }, "required": [ "Value", "IsBounded" ], "type": "object" } }, "title": "Int property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Float", "Value": 0 }, "properties": { "PropertyType": { "const": "Float", "default": "Float" }, "Value": { "properties": { "IsBounded": { "default": false, "type": "boolean" }, "LowerBound": { "type": "number" }, "UpperBound": { "type": "number" }, "Value": { "default": 0, "type": "number" } }, "required": [ "Value", "IsBounded" ], "type": "object" } }, "title": "Float property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Byte", "Value": 0 }, "properties": { "PropertyType": { "const": "Byte", "default": "Byte" }, "Value": { "default": 0, "maximum": 255, "minimum": 0, "type": "integer" } }, "title": "Byte property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Color", "Value": { "Alpha": 1.0, "Blue": 0.0, "Green": 0.333, "Red": 1.0 } }, "properties": { "PropertyType": { "const": "Color", "default": "Color" }, "Value": { "properties": { "Alpha": { "default": 1.0, "type": "number" }, "Blue": { "default": 0.0, "type": "number" }, "Green": { "default": 0.333, "type": "number" }, "Red": { "default": 1.0, "type": "number" } }, "required": [ "Red", "Green", "Blue", "Alpha" ], "type": "object" } }, "title": "Color property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Custom", "Value": {} }, "properties": { "PropertyType": { "const": "Custom", "default": "Custom" }, "Value": { "properties": { "CustomDataClass": { "type": "string" }, "CustomValue": {} }, "required": [ "CustomDataClass", "CustomValue" ], "type": "object" } }, "title": "Custom property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "Array", "Value": {} }, "properties": { "PropertyType": { "const": "Array", "default": "Array" }, "Value": { "properties": { "ValueItemClass": { "type": "string" }, "Values": { "items": { "$ref": "#/$defs/SaveProperty" }, "type": "array" } }, "required": [ "ValueItemClass", "Values" ], "type": "object" } }, "title": "Array property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "JSON", "Value": {} }, "properties": { "PropertyType": { "const": "JSON", "default": "JSON" }, "Value": {} }, "title": "JSON property" }, { "$ref": "#/$defs/SaveProperty", "default": { "PropertyID": "", "PropertyType": "UIDummy", "Value": {} }, "properties": { "PropertyType": { "const": "UIDummy", "default": "UIDummy" }, "Value": { "properties": { "DummyOptions": { "properties": { "IKSAction": { "description": "defines the custom input action managed by the InputKeySelector dummy", "type": "string" }, "SpacerHeight": { "description": "defines the height of the VerticalSpacer dummy", "minimum": 0, "type": "integer" }, "TitleFontSize": { "description": "defines the font size used by the Title dummy", "minimum": 1, "type": "integer" }, "TitleText": { "description": "defines the text content of the Title dummy", "type": "string" } }, "type": "object" }, "DummyType": { "enum": [ "VerticalSpacer", "HorizontalRule", "Title", "InputKeySelector", "Subsection", "WidgetHost" ], "examples": [ "VerticalSpacer", "HorizontalRule", "Title", "InputKeySelector", "Subsection", "WidgetHost" ], "type": "string" } }, "required": [ "DummyType" ], "type": "object" } }, "title": "UIDummy property" } ] }, "type": "array" }, "SaveLocation": { "default": "", "description": "the path to the save location", "type": "string" } }, "required": [ "ObjectVersion", "SaveLocation", "Properties" ], "title": "DRGLib save object", "type": "object" }
MIT
en
croz-ltd/apicurio-registry-gradle-plugin
46976f8e92934518bdc5980ed9cb66e1289e5710
2023-01-10T08:30:50
plugin/src/testFixtures/resources/TestJsonSchema.json
12
2024-05-27T07:21:24.197995Z
{ "$id": "https://test.com/test.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "id": { "description": "The unique identifier", "type": "integer" }, "name": { "description": "The name", "type": "string" } }, "title": "Test", "type": "object" }
MIT
en
croz-ltd/apicurio-registry-gradle-plugin
0438f3be66f2b97262d44608750cecb4c209b27c
2022-11-09T17:17:08
plugin/src/testFixtures/resources/TestJsonSchema.json
12
2024-05-27T07:21:24.197995Z
{ "$id": "https://test.com/test.schema.json", "$schema": "https://json-schema.org/draft/2020-12/schema", "properties": { "id": { "description": "The unique identifier", "type": "integer" }, "name": { "description": "The name", "type": "string" } }, "title": "Test", "type": "object" }
MIT
en
aws-controllers-k8s/memorydb-controller
1c4c760ec8d60f88631a145cab04891adbdff11e
2022-12-11T13:02:17
helm/values.schema.json
5
2024-05-08T23:37:07.180586Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/memorydb-controller
f176e1314a6c3c6b6de32e5559c205e8ccaa53fd
2023-02-10T02:50:46
helm/values.schema.json
5
2024-05-08T23:37:07.180586Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/memorydb-controller
719fe9155a4eef413d28892baf2f1bb1cee84a0c
2023-06-20T18:36:33
helm/values.schema.json
5
2024-05-08T23:37:07.180586Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/memorydb-controller
d9d85d53d2451d3c65dd75cf7a45b1b6ff641fb7
2022-02-24T17:05:07
helm/values.schema.json
5
2024-05-08T23:37:07.180586Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/memorydb-controller
8a0bc12df2027db0b6289a20c6428899032b73a9
2022-11-28T22:51:07
helm/values.schema.json
5
2024-05-08T23:37:07.180586Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/memorydb-controller
d2483d240ce00bd278928293963db570b33a5b05
2023-01-19T18:01:06
helm/values.schema.json
5
2024-05-08T23:37:07.180586Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/memorydb-controller
cdee2777df3eedce4dd3d2504df23949661b6aeb
2023-09-21T16:58:18
helm/values.schema.json
5
2024-05-08T23:37:07.180586Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
ea676d7f81d7a71ef0f1de99f01194fffa37a4ff
2022-12-11T15:15:17
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
620c8803f6527c52ac77c8437c0c35386a2968c1
2022-01-10T18:24:15
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "object" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
b319ebdf2f6fa7a3a6c81b50896688ddec0c831f
2024-03-07T18:44:45
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
0961ca31708e87026dc4ac16a1b3f3d3b8ab9458
2023-06-15T18:59:26
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
7f2abf41d9dab8f3b3c7f02cdb39d08f6f93aebe
2022-06-17T18:09:26
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
7fd41ec997eb3a012a397039e6795be9f342e6f0
2023-09-15T10:36:13
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
ea372291249fab9927a043c977bd1c953d8de693
2023-02-10T10:58:46
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
54621e4bd6171013e0c55429a4159cdea5d2a168
2023-09-07T03:13:04
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
9b762e439f390d7184dc411195fb082a67dcb76f
2022-01-20T11:51:38
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
caf10a7ec12ef080e8e2ac46f6bbfcb3aee302b2
2023-02-02T22:59:21
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/ecr-controller
6277e16523516f1ba6bacdb67c47f4efdaf4dab3
2022-07-22T23:47:29
helm/values.schema.json
12
2024-05-28T00:57:41.47581Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
d5ed5dfc6d2b537bc50555c3fab438a1b97029ce
2023-06-07T21:55:22
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
e7e8d1487ba967fa8470b5e307feebcbec2d66b1
2022-01-10T18:09:30
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "object" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
ee068bfcf5703fd0e5c557070322446063d6d08b
2022-10-13T17:27:29
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
ffbfe9d4ceb3402ed5ba237eb4f9314d8207a677
2023-01-31T23:55:20
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
db54010ac50f0710a60f5ad8e457125f35b8d9b9
2023-05-16T17:16:50
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
3796d7052fe2a8f9d56ee2675c422828b0a3bdab
2022-08-08T14:41:43
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
c84b72a97357bf9e0b208e0ddb147b28cbf615d4
2022-11-05T00:11:46
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
ea36496c1d36e9e203a125dceb9ccbfc6c124801
2024-03-07T18:04:46
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
f7e293c83872ebf04d8a2164515caea7f7875938
2022-01-20T11:50:38
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
6a1f71e1b68480530e9a9ac1389b8a0f7bc30499
2023-09-15T22:02:14
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
39f35a10f5a8324cdb550e7077ea744a1d4d91f4
2023-03-22T22:31:57
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
83151815f89d88b9885de64a3115c35ed807645f
2023-09-07T04:51:04
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/lambda-controller
d5b114d029b950dc1d3bf8aec874ce9a83b2e9fe
2022-10-25T20:45:38
helm/values.schema.json
15
2024-05-28T03:21:42.063464Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
9ec0163a15ea486951ec978fee384c87cd50846a
2022-06-17T21:30:00
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
b10b5d932c0ac19e1c38e9efde8eaa64eaa74d3f
2023-09-15T10:27:13
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
15a6365fa6beab174b746e5aee91ab5e8339843b
2024-03-07T14:25:44
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
fedc7a41c2808ced148cf955f4b77c7fa9c069a0
2023-05-03T18:23:20
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
713b375f55100bbf6b5045f87de0483bbda72132
2022-01-24T20:39:47
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
6da8b796a8c3c47abe6a610f2ce6ac350f941863
2022-07-23T13:09:29
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
e53b0a237ef05619580ed20d96c6868f58c744f6
2023-09-07T03:52:04
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
6dd3c624208cbda0e1950ff29216adf299d9931f
2023-01-20T21:08:07
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
2fabe0b4dab4b18c9ccdc47aa15cf30c5d80f9fc
2023-02-10T10:29:46
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/iam-controller
2e1520f3995146f2bfc7496416cffe89e225d5a6
2022-10-10T09:37:25
helm/values.schema.json
46
2024-05-28T04:22:39.882366Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
af0f857e245fe580ae3b2ade3089483a48cc3e76
2023-02-09T17:43:46
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
3685b9c3a18112b0498b63482af2ac99f617d4f5
2023-06-06T19:42:14
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
41717fa2d9dc412f521bdb1245c429d42b88836f
2023-09-20T00:44:17
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
63b9491b6b95c391498777218dc1bf88d46d5cd8
2024-05-03T11:15:25
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
fb10aca4c35627adae1b3bb26e5997b8e0e0178d
2022-01-10T18:33:30
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "object" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
1064a5fe60c263bbc49a1a019afa64aa62869c3d
2022-01-24T21:58:41
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
e64606b7fff1294b611e77d07b8a0f7fac24619b
2022-06-17T19:15:01
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "^.*=.*$", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
1d3641f4dfa9de20184414528bb5799ccd829033
2023-02-10T10:23:46
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/elasticache-controller
a318922772c16e6f1829f65f89452c200210d0f5
2022-10-24T13:29:37
helm/values.schema.json
19
2024-05-28T00:57:39.081118Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/acm-controller
fb6e632bb6ddedbb8dda93f88156dbba04460be3
2023-09-15T21:56:14
helm/values.schema.json
19
2024-05-27T07:33:33.057291Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/acm-controller
38ecf7c3346c9066e5dc52d4406f9bfdbed1d46c
2024-03-07T18:35:45
helm/values.schema.json
19
2024-05-27T07:33:33.057291Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "replicas": { "type": "integer" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile settings. This is used to configure the controller's reconciliation behavior. e.g resyncPeriod and maxConcurrentSyncs", "properties": { "defaultMaxConcurentSyncs": { "type": "number" }, "defaultResyncPeriod": { "type": "number" }, "resourceMaxConcurrentSyncs": { "type": "object" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/acm-controller
d8ee0164804e1a40ce528cfd078b66ab3039d72b
2023-06-15T18:55:33
helm/values.schema.json
19
2024-05-27T07:33:33.057291Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/acm-controller
c26cda8d455c5bf842bee49ba70dedcb82f813a1
2023-01-13T20:31:02
helm/values.schema.json
19
2024-05-27T07:33:33.057291Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/acm-controller
926e36b68c01e16974a0712210b5cca284a5cd89
2023-09-07T04:45:04
helm/values.schema.json
19
2024-05-27T07:33:33.057291Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "extraEnvVars": { "type": "array" }, "extraVolumeMounts": { "type": "array" }, "extraVolumes": { "type": "array" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "leaderElection": { "description": "Parameter to configure the controller's leader election system.", "properties": { "enabled": { "type": "boolean" }, "namespace": { "type": "string" } }, "type": "object" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" }, "watchNamespace": { "type": "string" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en
aws-controllers-k8s/acm-controller
04859fb88c0316f55f510c2b08aafd1328276195
2023-02-10T11:06:46
helm/values.schema.json
19
2024-05-27T07:33:33.057291Z
{ "$schema": "https://json-schema.org/draft-07/schema#", "properties": { "aws": { "description": "AWS API settings", "properties": { "credentials": { "description": "AWS credentials information", "properties": { "profile": { "type": "string" }, "secretKey": { "type": "string" }, "secretName": { "type": "string" } }, "type": "object" }, "endpoint": { "type": "string" }, "region": { "type": "string" } }, "type": "object" }, "deletionPolicy": { "enum": [ "delete", "retain" ], "type": "string" }, "deployment": { "description": "Deployment settings", "properties": { "affinity": { "type": "object" }, "annotations": { "type": "object" }, "containerPort": { "maximum": 65535, "minimum": 1, "type": "integer" }, "labels": { "type": "object" }, "nodeSelector": { "type": "object" }, "priorityClassName": { "type": "string" }, "tolerations": { "type": "array" } }, "required": [ "containerPort" ], "type": "object" }, "fullNameOverride": { "type": "string" }, "image": { "description": "Container Image", "properties": { "pullPolicy": { "enum": [ "IfNotPresent", "Always", "Never" ], "type": "string" }, "pullSecrets": { "type": "array" }, "repository": { "minLength": 1, "type": "string" }, "tag": { "minLength": 1, "type": "string" } }, "required": [ "repository", "tag", "pullPolicy" ], "type": "object" }, "installScope": { "enum": [ "cluster", "namespace" ], "type": "string" }, "log": { "description": "Logging settings", "properties": { "enable_development_logging": { "type": "boolean" }, "level": { "type": "string" } }, "type": "object" }, "metrics": { "description": "Metrics settings", "properties": { "service": { "description": "Kubernetes service settings", "properties": { "create": { "type": "boolean" }, "type": { "enum": [ "ClusterIP", "NodePort", "LoadBalancer", "ExternalName" ], "type": "string" } }, "required": [ "create", "type" ], "type": "object" } }, "required": [ "service" ], "type": "object" }, "nameOverride": { "type": "string" }, "reconcile": { "description": "Reconcile resync settings. Parameters to tune the controller's drift remediation period.", "properties": { "defaultResyncPeriod": { "type": "number" }, "resourceResyncPeriods": { "type": "object" } }, "type": "object" }, "resourceTags": { "items": { "pattern": "(^$|^.*=.*$)", "type": "string" }, "type": "array" }, "resources": { "description": "Kubernetes resources settings", "properties": { "limits": { "description": "Kubernetes resource limits", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" }, "requests": { "description": "Kubernetes resource requests", "properties": { "cpu": { "oneOf": [ { "type": "number" }, { "type": "string" } ] }, "memory": { "oneOf": [ { "type": "number" }, { "type": "string" } ] } }, "required": [ "memory", "cpu" ], "type": "object" } }, "required": [ "requests", "limits" ], "type": "object" }, "role": { "description": "Role settings", "properties": { "labels": { "type": "object" } } }, "serviceAccount": { "description": "ServiceAccount settings", "properties": { "annotations": { "type": "object" }, "create": { "type": "boolean" }, "name": { "type": "string" } }, "type": "object" } }, "required": [ "image", "deployment", "metrics", "resources", "log", "installScope", "resourceTags", "serviceAccount" ], "title": "Values", "type": "object" }
Apache-2.0
en