mirror of
https://git.mirrors.martin98.com/https://github.com/ceph/ceph-csi.git
synced 2025-08-02 23:50:37 +08:00

Uses github.com/libopenstorage/secrets to communicate with Vault. This removes the need for maintaining our own limited Vault APIs. By adding the new dependency, several other packages got updated in the process. Unused indirect dependencies have been removed from go.mod. Signed-off-by: Niels de Vos <ndevos@redhat.com>
10 lines
354 B
Go
10 lines
354 B
Go
// Package rootcerts contains functions to aid in loading CA certificates for
|
|
// TLS connections.
|
|
//
|
|
// In addition, its default behavior on Darwin works around an open issue [1]
|
|
// in Go's crypto/x509 that prevents certicates from being loaded from the
|
|
// System or Login keychains.
|
|
//
|
|
// [1] https://github.com/golang/go/issues/14514
|
|
package rootcerts
|