diff --git a/app/_hub/_init/my-extension/_index.md b/app/_hub/_init/my-extension/_index.md index 61c4c4666022..645c6a0124b8 100644 --- a/app/_hub/_init/my-extension/_index.md +++ b/app/_hub/_init/my-extension/_index.md @@ -5,15 +5,9 @@ # Your publisher path is relative to app/_hub/. # The path must consist only of alphanumeric characters and hyphens (-). # -# 2. Create a versions.yml file in your new plugin directory. +# 2. Duplicate the versions.yml file into your new plugin directory. # Set the Kong Gateway version that the plugin is being added to. -# Use the following format in that file (see docs/single-sourced-plugins.md for more info): -# -# strategy: gateway -# -# releases: # Fill in the Gateway version that this plugin is being added in. -# - 3.0.x -# + # 3. Add a 64x64px icon for the plugin to app/_assets/images/icons/hub. # The name of the file must be in the following format: _.png # For example, for the rate limiting plugin the icon name is kong-inc_rate-limiting.png @@ -135,7 +129,8 @@ params: # Metadata about your plugin # Affects generation of examples and config table. protocols: # List of protocols this plugin is compatible with, in array format. - # Valid values: "http", "https", "tcp", "tls" + # Valid values: "http", "https", "tcp", "tls", "tls-passthrough", "grpc", + # "grpcs", "udp", "ws", and "wss". # Example: # - name: http # - name: https @@ -215,7 +210,8 @@ examples, limitations, use cases, etc. --> diff --git a/app/_hub/_init/my-extension/versions.yml b/app/_hub/_init/my-extension/versions.yml new file mode 100644 index 000000000000..ea9f5683e43b --- /dev/null +++ b/app/_hub/_init/my-extension/versions.yml @@ -0,0 +1,10 @@ +# Duplicate this file into your own plugin doc directory under app/_hub/. +# If you're adding a Kong-owned plugin, add it to app/_hub/kong-inc/. + +strategy: gateway + +releases: +# Array of Kong Gateway releases that this plugin is compatible with. +# If you're adding a new plugin for a specific release, only list that release. +# For example: + - 3.0.x