반응형 IT226 [참석] Hashicorp Stratege Day 2024 HashiCorp Strategy Day 2024에 참석했습니다.- 테라폼을 컨트롤타워에 연동해서 사용하는 것- 테라폼 비용예측- Vault 제품군에 대한 소개- Vault를 활용한 접근제어등이 특히 좋았던 것 같습니다.그리고 Whiteboard를 이용한 키노트가 아주 신선했었습니다.발표 중에 FinOps 내용도 함께 전달 해주신 이규석 이사님께 감사드립니다!저와 태환님이 번역한 "AWS 비용최적화 바이블"도 소개해주셨습니다. 2024. 11. 14. [Python] Secrets 을 별도 관리하기 github action을 즐겨 쓰면서, github action secrets 에 주요 환경변수나,access key 같은 걸 넣고 주로 사용합니다.그러나 local 환경에서도 동일하게 동작을 할 수 있게 되어야 합니다.그럴때 사용하는게 .env 파일입니다.그러기 위해서는 먼저 라이브러리가 필요합니다.라이브러리 설치pip install python-dotenv .env 파일 설정띄어쓰기 없이 입력하고, git 업로드시 같이 올라가면 안되기 때문에, .gitignore 설정에도 반드시 추가해야됩니다.*주로 프로젝트의 root 경로에 넣어줍니다.SLACK_BOT_TOKEN='Your SLACK_BOT_TOKEN'CHAT_ID='Your CHAT_ID'ACCESS_KEY='Your AccessKey'ACCE.. 2024. 10. 30. [MAC] Claude APP 만들어서 사용하는 방법 아이폰/아이패드에 있는 Claude 앱이 mac에는 없습니다. 하지만 하는 방법이 또 있죠.nativefier를 사용해서 웹페이지를 앱처럼 보이게 실행할 수 있습니다.1. nativefier 설치npm install -g nativefier 2. nativefier로 claude url 를 앱으로 변환하기nativefier "https://claude.ai/" --platform mac 3. 앱실행하기.app 파일 실행하기해당 경로에 가면 생성되어있다.잘 실행됩니다. 로그인은 Oauth 로 안되고 아래에 email 주소를 넣어서 해야됩니다. 2024. 10. 29. AWS 비용 절감하기 위해 지금 할 수 있는 일 10가지 이 글은 다음 글을 요약 번역한 글입니다. https://aws.amazon.com/ko/blogs/compute/10-things-you-can-do-today-to-reduce-aws-costs/ 10 things you can do today to reduce AWS costs | Amazon Web Services This post is contributed by Shankar Ramachandran, SA Specialist, Cost Optimization Introduction AWS’s breadth of services and pricing options offer the flexibility to effectively manage your costs, and still keep the .. 2023. 8. 30. 중소기업에서 클라우드 비용을 관리하는 방법 이 글은 다음의 블로그를 요약 번역한 글입니다. https://aws.amazon.com/ko/blogs/smb/how-to-manage-cloud-costs-for-your-small-or-medium-business/ How to Manage Cloud Costs for Your Small or Medium Business | Amazon Web Services For your small or medium business (SMB) to get maximum return on its IT investments, you must build a strong foundation of cloud financial management capabilities. IDC surveys (2022) show that.. 2023. 8. 22. [FireFox] EndPoint 등으로 인증서 확인 해결법 MOZILLA_PKIX_ERROR_MITM_DETECTED 오류 해결! 보안 프로그램에서 중간에 인증서를 가로채 갈 경우 정상 작동하지 않는 경우가 있습니다. 브라우저에서 고급설정에서 처리해주면 됩니다. about:config 그리고 security.enterprise_roots.enabled 를 false 에서 true 로 변경해줍니다. 이제 정상적으로 열립니다. 2023. 8. 21. [Git] Git 저장소 용량 줄이기 Github 저장소의 최대 용량은 2Gb 이다. 그래서 2Gb 가 넘을 경우 파일을 줄여야 하는데, 쉽지 않다. #저장소 복제 git clone {저장소 주소} # 저장소 크기 확인하기 git count-objects -v #git 히스토리 삭제 rm -fr .git #git 초기화 git init #브랜치 변경 git checkout -b main #로컬 파일 추가 git add . #커밋 git commit -m "repository initialize" #원격저장소 추가 git remote add -m main origin {원격 저장소} #원격저장소 확인 git remote -v #브랜치 변경 git branch -m master #push git push -f origin master 2023. 6. 12. [Github] git clone에 대한 LFS 설정 기존에 사용하던 repo를 migration 하던 중에 100MB가 넘는 파일이 있어서 LFS 설정 삽질에 대한 기록이다. LFS 설정은 하면 되는데, 기존 파일들은 적용되지 않기 때문에 따로 migrate 필요 $ git lfs migrate import --include="*.png" --everything git push 를 진행하던 중에, 다음과 같은 에러메시지가 떴다 Uploading LFS objects: 97% (3736/3836), 151 MB | 488 KB/s, done. batch response: This repository is over its data quota. Account responsible for LFS bandwidth should purchase more data p.. 2023. 6. 5. AWS re:Invent 2022에서 만난 FinOps 솔루션들 AWS re:Intvent 2022 에 참석하게 되어, expo를 둘러보면서 확인한 솔루션들을 정리해 보았다. 노출된 순서는 보이는대로 정리한 것으로, 좋고 나쁨은 데모로만 봐서 현재로서는 알수 없고 단지 나열이라는 것은 참고바란다. 1. solo.io https://www.solo.io/ 2. cloudzero https://www.cloudzero.com/ 3. cloudfix https://cloudfix.aurea.com/ 4. apptio https://www.apptio.com/products/cloudability/ 5. logz.io https://logz.io/ 6. CloudHealth by vmware https://cloudhealth.vmware.com/ 7. kubecost ht.. 2022. 12. 6. 이전 1 2 3 4 ··· 26 다음 반응형