-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pgbackrest info to support export #81
Add pgbackrest info to support export #81
Conversation
Issue: PGO-648
@@ -1072,6 +1076,65 @@ func gatherPatroniInfo(ctx context.Context, | |||
return nil | |||
} | |||
|
|||
// gatherPgBackRestInfo takes a client and buffer | |||
// execs into relevant pods to grab information | |||
func gatherPgBackRestInfo(ctx context.Context, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this have a log around here? Or is that line 1089?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, thx!
@@ -8,6 +8,16 @@ commands: | |||
#!/bin/bash | |||
|
|||
CLEANUP="rm -r ./kuttl-support-cluster ./crunchy_k8s_support_export_*.tar.gz" | |||
check_file() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
Issue: PGO-648