Advertisement
ansyeb

Untitled

Jul 22nd, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. root@debby:/usr/local/bin# aws configure list --profile dev
  2. Name Value Type Location
  3. ---- ----- ---- --------
  4. profile dev manual --profile
  5. access_key ****************TL3B shared-credentials-file
  6. secret_key ****************JdPg shared-credentials-file
  7. region us-west-2 config-file ~/.aws/config
  8. root@debby:/usr/local/bin# aws configure list --profile test
  9. Name Value Type Location
  10. ---- ----- ---- --------
  11. profile test manual --profile
  12. access_key ****************RGOA shared-credentials-file
  13. secret_key ****************RxzS shared-credentials-file
  14. region us-west-2 config-file ~/.aws/config
  15. root@debby:/usr/local/bin# aws configure list --profile devops
  16. Name Value Type Location
  17. ---- ----- ---- --------
  18. profile devops manual --profile
  19. access_key ****************NXGR shared-credentials-file
  20. secret_key ****************4z17 shared-credentials-file
  21. region us-west-2 config-file ~/.aws/config
  22. root@debby:/usr/local/bin# cat /root/.aws/config
  23. [default]
  24. region = us-west-2
  25. output = json
  26. [profile dev]
  27. output = yaml
  28. region = us-west-2
  29. [profile test]
  30. output = yaml
  31. region = us-west-2
  32. [profile devops]
  33. output = yaml
  34. region = us-west-2
  35. root@debby:/usr/local/bin# aws eks --region us-west-2 update-kubeconfig --name dev
  36.  
  37. An error occurred (ResourceNotFoundException) when calling the DescribeCluster operation: No cluster found for name: dev.
  38. root@debby:/usr/local/bin#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement