Caleb Groom
Results
2
comments of
Caleb Groom
Creating a public LB provides both an IPv4 and IPv6 IP without modification: ``` $ clb create newlb 80 HTTP '10.1.1.1:80,10.2.2.2:80' public $ clb show newlb | grep VIP |...
@bokehsensei I was able to get clone to work on a private Github repo using OAuth tokens: ``` import pygit2 callbacks = pygit2.RemoteCallbacks(pygit2.UserPass('mytoken', 'x-oauth-basic')) repo = pygit2.clone_repository( 'https://github.com/myorg/myrepo.git', '/tmp/foo, callbacks=callbacks)...