Guest User

Untitled

a guest
May 25th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. #!/bin/bash
  2. # The AWS profile you want to activate - for "sahring is caring reasons"
  3. # lets keep this value similar to all cluster administrators
  4. export AWS_PROFILE=tikal-io
  5. export AWS_ACCESS_KEY_ID=$(aws configure get aws_access_key_id)
  6. export AWS_SECRET_ACCESS_KEY=$(aws configure get aws_secret_access_key)
  7. # As commented above this is the s3 bucket which can store multipule cluster configurations.
  8. # in case we want seperation of buckets this value might change based on stg prd etc etc
  9. export KOPS_STATE_STORE=s3://ac.fuse.tikal.io
  10. # Cluster name - each cluster has a unique name which also coreponds
  11. # to the subdirectory in the s3 bucket
  12. export KOPS_CLUSTER_NAME=dev.hub.tikal.io
  13. # atom / anythong you like ...
  14. export EDITOR='vim'
Add Comment
Please, Sign In to add comment