-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: release 0.1.11 gateway chart (#149)
Signed-off-by: Nic <[email protected]>
- Loading branch information
Showing
8 changed files
with
40 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,92 +1,5 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-07/schema#", | ||
"properties": { | ||
"plugins": { | ||
"description": "APISIX plugins to be enabled", | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"minItems": 0, | ||
"uniqueItems": true | ||
}, | ||
"stream_plugins": { | ||
"description": "APISIX stream_plugins to be enabled", | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
}, | ||
"minItems": 0, | ||
"uniqueItems": true | ||
}, | ||
"customPlugins": { | ||
"description": "customPlugins allows you to mount your own HTTP plugins", | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"luaPath": { | ||
"type": "string" | ||
}, | ||
"plugins": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"minLength": 1 | ||
}, | ||
"attrs": { | ||
"type": "object" | ||
}, | ||
"configMap": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"minLength": 1 | ||
}, | ||
"mounts": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"key": { | ||
"type": "string", | ||
"minLength": 1 | ||
}, | ||
"path": { | ||
"type": "string", | ||
"minLength": 1 | ||
} | ||
}, | ||
"required": [ | ||
"key", | ||
"path" | ||
] | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"mounts" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"name", | ||
"configMap" | ||
] | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"enabled", | ||
"luaPath", | ||
"plugins" | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.