Skip to content

FabFed JANUS Cheatsheet

abessiari edited this page May 9, 2024 · 8 revisions

Misc Notes On Testing Janus:

  • See config/fabfed_credentials_template.yml for janus provider as fo now a minimal configuration should look like
janus:
   username: admin
   password: admin
  • Must add private keys to ssh-agent for all provider you plan on using. They key locations can be found in the credential file under slice-private-key-location and bastion-key-location. See config/fabfed_credentials_template.yml for each provider
eval `ssh-agent`
ssh-add ~/.ssh/fabric-bastion.key
ssh-add ~/.ssh/fabric-sliver.key
# ssh-add ~/.ssh/fabric-sliver-beta.key. # Only if you are using fabric beta env .... 
ssh-add -l

For more details see chameleon-fabric and janus use-case at https://gist.github.com/abessiari/9406bc0f845b0eb39f9da96aa0ae6811

Clone this wiki locally