* provider: adding Nomad provider * updating CONTRIBUTING.md with Nomad provider * updated README.md by adding the Nomad provider * fix typo * adding nomad/api and nomad/testutil deps * adding Nomad binary dependency for provider tests * fixed the nomad binary download command step and added tolerations to the nomad provider. * adding nomad provider demo gif * adding my name to authors * adding two missing go-rootcerts files after dep ensure * delete pod comment
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
|