Projen을 사용하여 CDK 구성 라이브러리, CDK 앱 및 CDK 파이프라인 구축

11653 단어 projencdkaws

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










참조


  • CDK Getting Started
  • CDK API Reference
  • CDK Workshop
  • CDK Patterns
  • CDK Construct Hub
  • AWS Solutions Constructs
  • Projen
  • Projen API Reference
  • Projen AWS CDK Construct Library
  • Projen AWS CDK Applications
  • Publish CDK Constructs
  • projen-cdk-tutorial-part-1
  • projen-cdk-tutorial-part-2
  • projen-cdk-tutorial-part-3
  • 좋은 웹페이지 즐겨찾기