Skip to content

Commit 4cb8631

Browse files
committed
Update CHANGELOG.md and add certs endpoint
1 parent 949222a commit 4cb8631

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,7 @@ Generated manually. For contributions, please update this file when submitting P
3434
### Fixed
3535
- Fixed an issue where snapshot capture could hang due to missing context timeout — timeouts are now properly implemented.
3636

37-
### Added
38-
- Support for interval-based xDS snapshots (`--interval` flag).
39-
- Option to target all Connect-injected pods or a specific pod by name.
40-
- Organized output directories by pod name and timestamp for better traceability.
41-
42-
### Changed
43-
- Replaced use of Consul CLI with direct Envoy admin API calls for log level management.
44-
- Improved error handling when target pod is not reachable or doesn't have a dataplane container.
4537

46-
### Fixed
47-
- Log level now always correctly reverts, even on capture failure.
48-
- Fixed occasional race when capturing multiple pods in parallel.
4938

5039
## [0.1.0] - 2024-11-09
5140

@@ -57,3 +46,5 @@ Generated manually. For contributions, please update this file when submitting P
5746

5847

5948

49+
50+

pkg/cmd/snap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type SnapshotConfig struct {
2424
Duration time.Duration
2525
}
2626

27-
var DefaultEndpoints = []string{"/stats", "/config_dump", "/listeners", "/clusters"}
27+
var DefaultEndpoints = []string{"/stats", "/config_dump", "/listeners", "/clusters", "/certs"}
2828

2929
func CaptureSnapshot(kubeService kube.KubernetesApiService, config SnapshotConfig) error {
3030
if len(config.Endpoints) == 0 {

0 commit comments

Comments
 (0)