-
Notifications
You must be signed in to change notification settings - Fork 2
SwiftProxy compatibility list
Ka-Hing Cheung edited this page Aug 6, 2015
·
5 revisions
This page lists applications known to have compatibility with SwiftProxy and any configuration needed to use them. Usually one must explicitly set the endpoint and use TempAuth.
swift -A http://127.0.0.1:8080/auth/v1.0 -U identity -K credential list
Properties properties = new Properties();
properties.setProperty("jclouds.keystone.credential-type", "tempAuthCredentials");
BlobStoreContext context = ContextBuilder
.newBuilder("openstack-swift")
.credentials(identity, credential)
.endpoint("http://127.0.0.1:8080/auth/v1.0")
.overrides(properties)
.buildView(BlobStoreContext.class);