-
Notifications
You must be signed in to change notification settings - Fork 75
K8SPG-1011 pgbackrest image no longer required when backups are disabled #1562
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
base: main
Are you sure you want to change the base?
Changes from all commits
18631ff
3b9f570
b3a3507
1f5a6ce
a4f3715
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -372,7 +372,8 @@ func (r *Reconciler) isCertManagerInstalled(ctx context.Context, ns string) (boo | |
| case errors.Is(err, certmanager.ErrCertManagerNotFound): | ||
| return false, nil | ||
| case errors.Is(err, certmanager.ErrCertManagerNotReady): | ||
| return true, nil | ||
| logging.FromContext(ctx).Info("cert-manager is not ready, falling back to internal PKI") | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @egegunes Do we need to do it? Or create a separate task/PR to control it via a separate option. The logic will be that the cluster will wait for certifications from cert-manager, and the operator will not generate them if cert-manager is detected. As I remember, we have such a community request in PXCO
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we can do it but we need a separate task so QA can verify this specifically |
||
| return false, nil | ||
| } | ||
| return false, err | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.