Projen을 사용하여 CDK 구성 라이브러리, CDK 앱 및 CDK 파이프라인 구축
Part1 ( CDK 구성 라이브러리 )
Part2 ( CDK 앱 )
3부( CDK 파이프라인 앱 )
1 부
단계
1- Github 비밀 추가
TWINE_USERNAME
TWINE_PASSWORD
NPM_TOKEN
NUGET_API_KEY
MAVEN_USERNAME
MAVEN_PASSWORD
MAVEN_STAGING_PROFILE_ID
MAVEN_GPG_PRIVATE_KEY
MAVEN_GPG_PRIVATE_KEY_PASSPHRASE
2- 로컬에서 프로젝트 생성 또는 다음을 사용하여 시작Gitpod-Part-1
mkdir projen-cdk-tutorial-part-1
cd projen-cdk-tutorial-part-1
code .
alias pj="npx projen"
pj new awscdk-construct
3- 프로젝트 구성
Add your code to .projenrc, This is the only file that will be modified. During projen it will scaffold your whole project including what you are reading right now ! :)
4- 프로젝트 실행
pj
5- 커밋 및 푸시
git add .
git commit -m "Commit"
git push
2 부
단계
1- Gitpod 비밀 추가
AWS_ACCOUNT_NUMBER
AWS_DEFAULT_REGION
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
2- 로컬에서 프로젝트 생성 또는 다음을 사용하여 시작Gitpod-Part-2
mkdir projen-cdk-tutorial-part-2
cd projen-cdk-tutorial-part-2
code .
alias cdk="npx cdk"
awscdk-app-ts
3- 프로젝트 구성
Add your code to .projenrc, This is the only file that will be modified. During projen it will scaffold your whole project including what you are reading right now ! :)
4- 프로젝트 실행
pj
5- 커밋 및 푸시
git add .
git commit -m "Commit"
git push
6- ECS 스택 배포
npx cdk bootstrap aws://$AWS_ACCOUNT_NUMBER/$AWS_DEFAULT_REGION
cdk deploy
파트 3
단계
1- Gitpod 비밀 추가
AWS_ACCOUNT_NUMBER
AWS_DEFAULT_REGION
AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY
2- 로컬에서 프로젝트 생성 또는 다음을 사용하여 시작Gitpod-Part-3
mkdir projen-cdk-tutorial-part-3
cd projen-cdk-tutorial-part-3
code .
alias cdk="npx cdk"
awscdk-app-ts
3- 프로젝트 구성
Add your code to .projenrc, This is the only file that will be modified. During projen it will scaffold your whole project including what you are reading right now ! :)
4- 프로젝트 실행
pj
5- 커밋 및 푸시
git add .
git commit -m "Commit"
git push
6- CDK 파이프라인 배포
npx cdk bootstrap aws://$AWS_ACCOUNT_NUMBER/$AWS_DEFAULT_REGION
cdk deploy
7- CDK 파이프라인을 통해 ECS 스택 배포
git remote add codecommit "<YOUR_CODECOMMIT_REPO>"
git add .
git commit -m "Commit"
git push codecommit master
참조
Reference
이 문제에 관하여(Projen을 사용하여 CDK 구성 라이브러리, CDK 앱 및 CDK 파이프라인 구축), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/aws-builders/building-cdk-construct-library-cdk-app-and-cdk-pipelines-using-projen-41d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)