Skip to content

Latest commit

 

History

History
175 lines (117 loc) · 6.72 KB

setup.md

File metadata and controls

175 lines (117 loc) · 6.72 KB

Bootstrapping a New Project

이 섹션에서는 프로젝트 템플릿을 사용하여 새 프로젝트를 시작하는 방법을 배웁니다. 부트스트랩 프로세스는 GitHub에 새 프로젝트 리포지토리를 만들고 프로젝트 템플릿의 콘텐츠로 채웁니다. 또한 프로젝트의 개발 환경을 설정하여 프로젝트를 빠르고 효율적으로 시작하는 데 필요한 모든 것을 갖추도록 합니다.

Prerequisites

You will also need:

  • Azure Subscription - sign up for a free account.
  • GitHub Account - sign up for a free account.
  • Access to Azure OpenAI - submit a form to request access.
  • Permissions to create a Service Principal (SP) in your Azure AD Tenant.
  • Permissions to assign the Owner role to the SP within the subscription.

Steps to Bootstrap a Project

  1. 이 프로젝트를 Fork합니다.

  2. gh을 이용하여 환경변수, Github Action설정을 합니다.

    cp bootstrap.properties.template bootstrap.properties
    
  3. Authenticate with Azure and GitHub

    Log in to Azure CLI:

    az login

    Log in to Azure Developer CLI:

    azd auth login

    Log in to GitHub CLI:

    gh auth login
  4. bootstrap.properties 파일 수정

    # GitHub Repo Creation Properties
    github_username="<username>"
    # github_use_ssh: true will use ssh, false will use https
    github_use_ssh="false"
    # project_visibility: public, private, internal
    github_new_repo_visibility="public" 
    
    # Dev Environment Provision Properties
    azd_dev_env_provision="true"
    azd_dev_env_name="<dev_env_name>"
    azd_dev_env_subscription="<subscription_id>"
    azd_dev_env_location="<location>"

단, prod, qa 환경을 별도로 구성한다면 각각 설정 필요

  • check quota

Note

리전은 AI 기반 Evaluator를 사용하기 위해 ["eastus2", "francecentral", "uksouth", "swedencentral"] https://learn.microsoft.com/en-us/azure/ai-studio/how-to/develop/flow-evaluate-sdk#risk-and-safety-evaluators

subscriptionId="replace by your subscription id" 
region="swedencentral"
results=$(az cognitiveservices usage list --subscription $subscriptionId --location $region) 
echo $results | jq -r '.[] | select(.name.value | test("Standard.gpt-4"))'
echo $results | jq -r '.[] | select(.name.value | test("OpenAI.Standard.text-embedding-ada-002"))'
echo $results | jq -r '.[] | select(.name.value | test("Standard.gpt-35-turbo"))' 
  1. Service Principal생성

    az ad sp create-for-rbac --name "<your-service-principal-name>" --role Owner --scopes /subscriptions/<your-subscription-id> 

    [!Important] 여기에서 생성한 출력 정보가 나중에 사용할 수 있도록 메모합니다.

  2. Github 설정

    ./bootstrap.sh
  3. dev 환경 인프라 Provision

    ./provision.sh
  4. Service Principal 권한할당

  5. Service Principal 권한할당

    CLIENT_ID="<your-client-id>"
    
    eval $(azd env get-values)
    
    # Assign "Search Index Data Contributor" role to the service principal for Azure Search
    az role assignment create --assignee $CLIENT_ID --role "8ebe5a00-799e-43f5-93ac-243d3dce84a7" --scope /subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZUREAI_RESOURCE_GROUP/providers/Microsoft.Search/searchServices/$AZURE_SEARCH_NAME
    
    # Assign "Azure AI Developer" role to the service principal for Azure AI project
    az role assignment create --assignee $CLIENT_ID --role "64702f94-c441-49e6-a78b-ef80e0188fee" --scope /subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZUREAI_RESOURCE_GROUP/providers/Microsoft.MachineLearningServices/workspaces/$AZUREAI_PROJECT_NAME
    
    # Assign "Azure AI Developer" role to the service principal for Azure AI Service
    az role assignment create --assignee $CLIENT_ID --role "64702f94-c441-49e6-a78b-ef80e0188fee" --scope /subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZUREAI_RESOURCE_GROUP/providers/Microsoft.CognitiveServices/accounts/$AZURE_OPENAI_NAME
    
    
    
    # Assign "AcrPull" role to the service principal for Azure Container Registry
    az role assignment create --assignee $CLIENT_ID --role "7f951dda-4ed3-4680-a7ca-43fe172d538d" --scope /subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZUREAI_RESOURCE_GROUP/providers/Microsoft.ContainerRegistry/registries/$AZURE_CONTAINER_REGISTRY_NAME
    
    # Assign "AcrPush" role to the service principal for Azure Container Registry
    az role assignment create --assignee $CLIENT_ID --role "8311e382-0749-4cb8-b61a-304f252e45ec" --scope /subscriptions/$AZURE_SUBSCRIPTION_ID/resourceGroups/$AZUREAI_RESOURCE_GROUP/providers/Microsoft.ContainerRegistry/registries/$AZURE_CONTAINER_REGISTRY_NAME
    
  6. Set GitHub Environment Variables

    리파지토리에서 아래 Variable 생성 확인 (dev, qa, and prod 별로 각각)

    • Environment Variables:
      • AZURE_ENV_NAME
      • AZURE_LOCATION
      • AZURE_SUBSCRIPTION_ID

    아래 secret 값은 5에서 생성한 값으로 직접 설정

    • Secret:
      • AZURE_CREDENTIALS

    Variable와 secret을 만들고 나면 환경 페이지가 다음 예시와 비슷해집니다:

    Environments Page

    다음은 개발 환경에 대한 환경 변수 값의 예입니다:

    Environment Variables

    AZURE_CREDENTIALS secret 샘플

    {
        "clientId": "your-client-id",
        "clientSecret": "your-client-secret",
        "subscriptionId": "your-subscription-id",
        "tenantId": "your-tenant-id"
    }

    Note: 이 Solution Accelerator 를 실험하는 데만 관심이 있는 경우, 동일한 구독을 사용하되 각 환경에 대해 AZURE_ENV_NAME만 변경하면 됩니다.

  7. Enable GitHub Actions

    조직 정책에 따라 이 기능이 기본적으로 활성화되어 있지 않을 수도 있으므로 리포지토리에서 GitHub 작업이 활성화되어 있는지 확인하세요. 이렇게 하려면 아래 그림에 표시된 버튼을 클릭하기만 하면 됩니다:

    Enable Actions

여기까지입니다! 이제 새 프로젝트가 부트스트랩되어 실행할 준비가 되었습니다.