Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
overlay: 1.0.0
info:
title: Redpanda Admin API Tags
version: v1
version: 1.0.0

actions:
- target: $.tags[?(@.name=="Mount and unmount topics")]
Expand Down
12 changes: 12 additions & 0 deletions admin/v2-overlays/add-servers-object.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This overlay adds the servers object to the Redpanda Admin API v2 specification.

overlay: 1.0.0
info:
title: Admin API v2 Servers
version: 1.0.0

actions:
- target: "$"
update:
servers:
- url: http://localhost:9644
24 changes: 24 additions & 0 deletions admin/v2-overlays/create-and-update-tags.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This overlay extends the Redpanda Admin API specification by creating an
# end-user facing list of tags and applying them to the relevant endpoints.
overlay: 1.0.0
info:
title: Redpanda Admin API v2 Tags
version: 1.0.0

actions:
# Add tags object to the root level
Copy link

@Feediver1 Feediver1 Oct 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# Add tags object to the root level
# Add the tags object at the root level

- target: "$"
update:
tags:
- name: Brokers
description: See details about brokers in a Redpanda cluster, including client connections.
- name: Shadow Links
description: Manage shadow links for disaster recovery and migration.

# Rename BrokerService endpoint tags
- target: "$.paths.*.*.tags[?(@ == 'BrokerService')]"
update: "Brokers"

# Rename ShadowLinkService endpoint tags
- target: "$.paths.*.*.tags[?(@ == 'ShadowLinkService')]"
update: "Shadow Links"