Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 955 Bytes

File metadata and controls

41 lines (28 loc) · 955 Bytes

Authentication

AWS

This is handled directly by the Boto3 API which uses the files in ~/.aws to configure credentials.

The default profile will be used automatically, use the AWS_PROFILE environment variable to use a different one:

AWS_PROFILE="someprofile" ringmaster ...

All work is done inside a single region which is controlled by databag value:

aws_region: "us-east-1" # eg

Kubernetes

ringmaster uses the active kubectl context

As eksctl sets up a cluster, it configures the active kubectl context which ringmaster will then use.

If you manage other clusters set the active context before running ringmaster

Snowflake

Configure your credentials in ~/.ringmaster/snowflake.yaml:

credentials:
  user: "yourusername"
  password: "t0ps3re4!"
  account: "XX11111.ap-southeast-2"