How to use the hokusai.cli.base.base.group function in hokusai

To help you get started, we’ve selected a few hokusai examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github artsy / hokusai / hokusai / cli / production.py View on Github external
@base.group()
def production(context_settings=CONTEXT_SETTINGS):
  """Interact with the production Kubernetes environment
  defined by the `production` context in `~/.kube/config` and the 
  Kubernetes resources in `./hokusai/production.yml`"""
  pass
github artsy / hokusai / hokusai / cli / remote / __init__.py View on Github external
@base.group()
def remote(context_settings=CONTEXT_SETTINGS):
  """Interact with remote Kubernetes resources"""
  pass
github artsy / hokusai / hokusai / cli / staging.py View on Github external
@base.group()
def staging(context_settings=CONTEXT_SETTINGS):
  """Interact with the staging Kubernetes environment
  defined by the `staging` context in `~/.kube/config` and the 
  Kubernetes resources in `./hokusai/staging.yml`"""
  pass
github artsy / hokusai / hokusai / cli / dev.py View on Github external
@base.group()
def dev(context_settings=CONTEXT_SETTINGS):
  """Interact with docker-compose development environment
  defined by ./hokusai/development.yml"""
  pass
github artsy / hokusai / hokusai / cli / pipeline.py View on Github external
@base.group()
def pipeline(context_settings=CONTEXT_SETTINGS):
  """Interact with the project's' staging -> production pipeline"""
  pass
github artsy / hokusai / hokusai / cli / registry.py View on Github external
@base.group()
def registry(context_settings=CONTEXT_SETTINGS):
  """Interact with the project registry defined by `./hokusai/config.yml`"""
  pass
github artsy / hokusai / hokusai / cli / review_app.py View on Github external
@base.group()
def review_app(context_settings=CONTEXT_SETTINGS):
  """Create/Manage review apps"""
  pass
github artsy / hokusai / hokusai / cli / local / __init__.py View on Github external
@base.group()
def local(context_settings=CONTEXT_SETTINGS):
  """Interact with your local project and Docker engine"""
  pass