Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@runnable/hostname

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@runnable/hostname

generate a runnable elastic or direct hostname from parts

latest
Source
npmnpm
Version
3.0.0
Version published
Maintainers
2
Created
Source

runnable-hostname

Build Status

util for generating an instance's elastic or direct hostname

Usage

var hostname = require('runnable-hostname');

// Non-master Pod Instance

hostname.direct({
  shortHash: 'abcdef',
  // non-masterPod instance has branch in name, so branch is required
  instanceName: 'branch-instanceName',
  branch: 'branch',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  userContentDomain: 'runnableapp.com'
});
// abcdef-instanceName-staging-ownerUsername.runnableapp.com
hostname.elastic({
  shortHash: 'abcdef',
  instanceName: 'branch-instanceName',
  branch: 'branch',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  userContentDomain: 'runnableapp.com'
});
// instanceName-staging-ownerUsername.runnableapp.com

// Master Pod Instance

hostname.direct({
  shortHash: 'abcdef',
  // masterPod instance has does NOT have branch in name, so branch is not required
  instanceName: 'instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: true,
  userContentDomain: 'runnableapp.com'
});
// abcdef-instanceName-staging-ownerUsername.runnableapp.com
hostname.elastic({
  shortHash: 'abcdef',
  instanceName: 'instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: true,
  userContentDomain: 'runnableapp.com'
});
// instanceName-staging-ownerUsername.runnableapp.com

// Isolated Master Instance

hostname.direct({
  shortHash: 'abcdef',
  branch: 'branch',
  instanceName: 'branch-instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  isolated: 'asd76sdasg2341324',
  isIsolationGroupMaster: true,
  userContentDomain: 'runnableapp.com'
});
// abcdef-instanceName-staging-ownerUsername.runnableapp.com
hostname.elastic({
  shortHash: 'abcdef',
  branch: 'branch',
  instanceName: 'branch-instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  isolated: 'asd76sdasg2341324',
  isIsolationGroupMaster: true,
  userContentDomain: 'runnableapp.com'
});
// instanceName-staging-ownerUsername.runnableapp.com           

// Isolated Container (not master) Instance
Master instance shortHash = '343gh1'

hostname.direct({
  shortHash: 'abcdef',
  branch: 'branch',
  instanceName: 'branch-instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  isolated: 'asd76sdasg2341324',
  isIsolationGroupMaster: true,
  userContentDomain: 'runnableapp.com'
});
// 343gh1--instanceName-staging-ownerUsername.runnableapp.com
hostname.elastic({
  shortHash: 'abcdef',
  branch: 'branch',
  instanceName: 'branch-instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  isolated: 'asd76sdasg2341324',
  isIsolationGroupMaster: true,
  userContentDomain: 'runnableapp.com'
});
// instanceName-staging-ownerUsername.runnableapp.com

// Non-repo
hostname.direct({
  shortHash: 'abcdef',
  instanceName: 'instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  isolated: 'asd76sdasg2341324',
  isIsolationGroupMaster: true,
  userContentDomain: 'runnableapp.com'
});
// 343gh1--instanceName-staging-ownerUsername.runnableapp.com
hostname.elastic({
  shortHash: 'abcdef',
  instanceName: 'instanceName',
  ownerUsername: 'ownerUsername',
  masterPod: false,
  isolated: 'asd76sdasg2341324',
  isIsolationGroupMaster: true,
  userContentDomain: 'runnableapp.com'
});
// instanceName-staging-ownerUsername.runnableapp.com

Keywords

runnable

FAQs

Package last updated on 11 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts