Closed
Description
quayctl should be able to pull from private registries configured for rkt. It already knows how to find and read .dockercfg files. The configuration for rkt also comes from files on disk. And there is a Go library that does this: https://godoc.org/github.com/coreos/rkt/rkt/config#GetConfig
There are two paths:
- quayctl uses the github.com/coreos/rkt/rkt/config package
- quayctl shells out to rkt to get the credentials over stdout
- quayctl talks to the rkt API to get the credentials
For expediency I feel like quayctl should do number 1 and perhaps file an issue to do number 3. What do you think @alban and @jonboulle.