mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

since --peer-ca-file is deprecated we need to update the debug output before: ``` $ etcd ... --peer-cert-file infra1.crt -peer-key-file infra1.key.insecure -peer-trusted-ca-file ca.crt --client-cert-auth etcdmain: peerTLS: cert = infra1.crt, key = infra1.key.insecure, ca = ``` after: ``` $ etcd ... --peer-cert-file infra1.crt -peer-key-file infra1.key.insecure -peer-trusted-ca-file ca.crt --client-cert-auth etcdmain: peerTLS: cert = infra1.crt, key = infra1.key.insecure, ca = , trusted-ca = ca.crt ```
pkg/ is a collection of utility packages used by etcd without being specific to etcd itself. A package belongs here only if it could possibly be moved out into its own repository in the future.