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
6 changes: 3 additions & 3 deletions antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ asciidoc:
# Fallback versions
# We try to fetch the latest versions from GitHub at build time
# --
full-version: 26.1.6
latest-redpanda-tag: 'v26.1.6'
full-version: 26.1.7
latest-redpanda-tag: 'v26.1.7'
Comment thread
Feediver1 marked this conversation as resolved.
latest-console-tag: 'v3.3.1'
latest-release-commit: '35a825c9c1880ebeedf4c18bb8c6cceaa63566c1'
latest-release-commit: 'ebee215fdb2b8004735c6f800e532564cdcc05e1'
latest-operator-version: 'v2.3.8-24.3.6'
operator-beta-tag: ''
helm-beta-tag: ''
Expand Down
10 changes: 8 additions & 2 deletions docs-data/property-overrides.json
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,10 @@
"leader_balancer_mode": {
"_comment": "greedy mode excluded from docs - internal use only (added in v26.1.2)",
"description": "Mode of the leader balancer optimization strategy.\n\nAccepted values:\n\n* `calibrated` (default): An adaptive strategy that samples potential moves and prioritizes high-impact transfers. Minimizes unnecessary leader movement while achieving balance over time. Best for most production workloads.\n* `random`: Accepts the first random move that improves balance. Less efficient than `calibrated` because it doesn't prioritize high-impact moves. Available as a fallback if `calibrated` causes unexpected behavior.\n\nLegacy values `greedy_balanced_shards` and `random_hill_climbing` are treated as `calibrated`.",
"accepted_values": ["calibrated", "random"],
"accepted_values": [
"calibrated",
"random"
],
"config_scope": "cluster"
},
"leader_balancer_mute_timeout": {
Expand Down Expand Up @@ -1540,6 +1543,9 @@
"oidc_group_claim_path": {
"version": "v26.1.1"
},
"oidc_http_proxy_url": {
"version": "v26.1.7"
},
"oidc_principal_mapping": {
"description": "Rule for mapping JWT payload claim to a Redpanda user principal.",
"related_topics": [
Expand Down Expand Up @@ -2269,4 +2275,4 @@
"description": "The default write caching mode to apply to user topics. Write caching acknowledges a message as soon as it is received and acknowledged on a majority of brokers, without waiting for it to be written to disk. With `acks=all`, this provides lower latency while still ensuring that a majority of brokers acknowledge the write. \n\nFsyncs follow <<raft_replica_max_pending_flush_bytes,`raft_replica_max_pending_flush_bytes`>> and <<raft_replica_max_flush_delay_ms,`raft_replica_max_flush_delay_ms`>>, whichever is reached first.\n\nThe `write_caching_default` cluster property can be overridden with the xref:reference:properties/topic-properties.adoc#writecaching[`write.caching`] topic property."
}
}
}
}
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"comparison": {
"oldVersion": "v26.1.5",
"newVersion": "v26.1.6",
"timestamp": "2026-04-22T01:41:17.013Z"
"oldVersion": "v26.1.6",
"newVersion": "v26.1.7",
"timestamp": "2026-05-08T12:54:30.491Z"
},
"summary": {
"newProperties": 0,
"newProperties": 1,
"changedDefaults": 0,
"changedDescriptions": 0,
"changedTypes": 0,
Expand All @@ -15,7 +15,14 @@
"emptyDescriptions": 2
},
"details": {
"newProperties": [],
"newProperties": [
{
"name": "oidc_http_proxy_url",
"type": "string",
"default": null,
"description": "URL of the HTTP forward proxy used for OIDC discovery and JWKS fetches. Accepts http://host:port or https://host:port. When set, `oidc_discovery_url` must use https://. Plain text OIDC origins cannot be routed through a forward proxy."
}
],
"changedDefaults": [],
"changedDescriptions": [],
"changedTypes": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10103,6 +10103,24 @@
"version": "v26.1.1",
"visibility": "user"
},
"oidc_http_proxy_url": {
"c_type": "ss::sstring",
"cloud_byoc_only": false,
"cloud_editable": false,
"cloud_readonly": false,
"cloud_supported": false,
"config_scope": "cluster",
"default": null,
"defined_in": "src/v/config/configuration.cc",
"description": "URL of the HTTP forward proxy used for OIDC discovery and JWKS fetches. Accepts `http://host:port` or `https://host:port`. When set, `oidc_discovery_url` must use `https:// \u2014`. Plain text OIDC origins cannot be routed through a forward proxy.",
"is_deprecated": false,
"is_enterprise": false,
"name": "oidc_http_proxy_url",
"needs_restart": false,
"nullable": true,
"type": "string",
"visibility": "user"
},
"oidc_keys_refresh_interval": {
"c_type": "std::chrono::seconds",
"cloud_byoc_only": false,
Expand Down
41 changes: 41 additions & 0 deletions modules/reference/partials/properties/cluster-properties.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14083,6 +14083,47 @@ endif::[]
|===


=== oidc_http_proxy_url

URL of the HTTP forward proxy used for OIDC discovery and JWKS fetches. Accepts `http://host:port` or `https://host:port`. When set, `oidc_discovery_url` must use `https://`. Plain text OIDC origins cannot be routed through a forward proxy.

[cols="1s,2a"]
|===
| Property | Value

| Type
| `string`



| Default
|
ifdef::env-cloud[]
Available in the Redpanda Cloud Console
endif::[]
ifndef::env-cloud[]
`null`
endif::[]

| Nullable
| Yes

| Requires restart
| No

ifndef::env-cloud[]
| Restored on xref:manage:whole-cluster-restore.adoc[Whole Cluster Restore]
| Yes
endif::[]

ifndef::env-cloud[]
| Visibility
| User
endif::[]

|===


=== oidc_keys_refresh_interval

The frequency of refreshing the JSON Web Keys (JWKS) used to validate access tokens.
Expand Down
Loading