Skip to content

Commit

Permalink
Authorize unsecure connection for s3 user reconcile
Browse files Browse the repository at this point in the history
 rgw: use insecure TLS for bucket health check rook#8712 only solved bucket health check
  • Loading branch information
n.fraison committed Oct 18, 2021
1 parent 9e95d3f commit f7b0873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/operator/ceph/object/rgw.go
Expand Up @@ -362,7 +362,7 @@ func genObjectStoreHTTPClient(objContext *Context, spec *cephv1.ObjectStoreSpec)
if err != nil {
return nil, tlsCert, errors.Wrapf(err, "failed to fetch CA cert to establish TLS connection with object store %q", nsName)
}
insecure := false
insecure := true
c.Transport = BuildTransportTLS(tlsCert, insecure)
}
return c, tlsCert, nil
Expand Down

0 comments on commit f7b0873

Please sign in to comment.