빠른 시작: gcloud CLI를 사용하여 Cloud Run에 함수 배포
이 페이지에서는 Cloud Run을 사용하여 gcloud CLI로 HTTP 함수를 배포하는 방법을 보여줍니다.
시작하기 전에
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Artifact Registry, Cloud Build, Cloud Run Admin API, and Cloud Logging APIs.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Enable the Artifact Registry, Cloud Build, Cloud Run Admin API, and Cloud Logging APIs.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
- Cloud Run 서비스의 기본 프로젝트를 설정하려면 다음 명령어를 실행합니다.
PROJECT_ID를 이 빠른 시작에서 만든 프로젝트 이름으로 바꿉니다.gcloud config set project PROJECT_ID
프로젝트에서 인증되지 않은 호출을 제한하는 도메인 제한 조직 정책이 적용되는 경우 비공개 서비스 테스트의 설명대로 배포된 서비스에 액세스해야 합니다.
- Cloud Build가 소스를 빌드할 수 있게 하려면 다음을 실행하여 Compute Engine 기본 서비스 계정에 Cloud Build 서비스 계정 역할을 부여합니다.
gcloud projects add-iam-policy-binding PROJECT_ID \ --member=serviceAccount:PROJECT_NUMBER-compute@developer.gserviceaccount.com \ --role=roles/cloudbuild.builds.builder
PROJECT_NUMBER
를 Google Cloud 프로젝트 번호로,PROJECT_ID
를 Google Cloud 프로젝트 ID로 바꿉니다. 프로젝트 ID와 프로젝트 번호를 찾는 방법은 프로젝트 만들기 및 관리를 참조하세요.Compute Engine 기본 서비스 계정에 Cloud Build 서비스 계정 역할을 부여하려면 전파하는 데 몇 분 정도 걸립니다.
샘플 함수 작성
애플리케이션을 작성하려면 다음 단계를 따르세요.
Node.js
helloworld
이라는 새 디렉터리를 만든 후 디렉터리를 다음으로 변경합니다.mkdir helloworld cd helloworld
helloworld
디렉터리에package.json
파일을 만들어 Node.js 종속 항목을 지정합니다.다음 Node.js 샘플을 사용하여
helloworld
디렉터리에index.js
파일을 만듭니다.
Python
helloworld
이라는 새 디렉터리를 만든 후 디렉터리를 다음으로 변경합니다.mkdir helloworld cd helloworld
helloworld
디렉터리에requirements.txt
파일을 만들어 Python 종속 항목을 지정합니다.그러면 샘플에 필요한 패키지가 추가됩니다.
다음 Python 샘플을 사용하여
helloworld
디렉터리에main.py
파일을 만듭니다.
Go
helloworld
이라는 새 디렉터리를 만든 후 디렉터리를 다음으로 변경합니다.mkdir helloworld cd helloworld
go.mod
파일을 만들어 Go 모듈을 선언합니다.위와 같은 형식의
go.mod
파일을 직접 만들거나 다음을 사용하여 프로젝트 디렉터리에서 초기화할 수 있습니다.go mod init github.com/GoogleCloudPlatform/golang-samples/functions/functionsv2/helloworld/go.mod
다음 Go 코드 샘플을 사용하여
helloworld
디렉터리에hello_http.go
파일을 만듭니다.
자바
helloworld
이라는 새 디렉터리를 만든 후 디렉터리를 다음으로 변경합니다.mkdir helloworld cd helloworld
소스 디렉터리와 소스 파일을 포함하도록 다음과 같은 프로젝트 구조를 만듭니다.
mkdir -p ~/helloworld/src/main/java/functions touch ~/helloworld/src/main/java/functions/HelloWorld.java
다음 Java 코드 샘플로
HelloWorld.java
파일을 업데이트합니다.helloworld
디렉터리에pom.xml
파일을 만들고 다음 Java 종속 항목을 추가합니다.
.NET
.NET SDK 6.0을 설치합니다. 이 빠른 시작은 .NET 버전 6에서만 작동합니다.
콘솔에서 dotnet 명령어를 사용하여 빈 웹 프로젝트를 새로 만듭니다.
dotnet new web -o helloworld-csharp
디렉터리를
helloworld-csharp
로 변경합니다.프로젝트 파일
helloworld-csharp.csproj
의 샘플 코드를 다음으로 바꿉니다.Program.cs
파일의 샘플 코드를 다음으로 바꿉니다.
함수 배포하기
중요: 이 빠른 시작에서는 빠른 시작에 사용 중인 프로젝트에 소유자 역할이나 편집자 역할이 있다고 가정합니다. 그렇지 않은 경우 소스에서 Cloud Run 리소스를 배포하는 데 필요한 권한은 Cloud Run 소스 개발자 역할을 참조하세요.
Cloud Run 함수를 배포하려면 다음 단계를 따르세요.
샘플 코드가 포함된 디렉터리에서 다음 명령어를 실행하여 함수를 배포합니다.
Node.js
gcloud beta run deploy nodejs-http-function \ --source . \ --function helloGET \ --base-image nodejs20 \ --region REGION \ --allow-unauthenticated
REGION을 함수를 배포하려는 서비스의 Google Cloud 리전으로 바꿉니다. 예를 들면
us-central1
입니다.Python
gcloud beta run deploy python-http-function \ --source . \ --function hello_get \ --base-image python312 \ --region REGION \ --allow-unauthenticated
REGION을 함수를 배포하려는 서비스의 Google Cloud 리전으로 바꿉니다. 예를 들면
us-central1
입니다.Go
gcloud beta run deploy go-http-function \ --source . \ --function HelloGet \ --base-image go122 \ --region REGION \ --allow-unauthenticated
REGION을 함수를 배포하려는 서비스의 Google Cloud 리전으로 바꿉니다. 예를 들면
us-central1
입니다.자바
pom.xml
파일이 포함된 디렉터리에서 다음 명령어를 실행합니다.gcloud beta run deploy java-http-function \ --source . \ --function functions.HelloWorld \ --base-image java21 \ --region REGION \ --allow-unauthenticated
REGION을 함수를 배포하려는 서비스의 Google Cloud 리전으로 바꿉니다. 예를 들면
us-central1
입니다..NET
gcloud beta run deploy csharp-http-function \ --source . \ --function HelloWorld.Function \ --base-image dotnet6 \ --region REGION \ --allow-unauthenticated
REGION을 함수를 배포하려는 서비스의 Google Cloud 리전으로 바꿉니다. 예를 들면
us-central1
입니다.배포가 완료되면 Google Cloud CLI에 서비스가 실행 중인 URL이 표시됩니다. 브라우저에서 URL을 열어 함수의 출력을 확인합니다.
함수에 Eventarc 트리거를 추가하는 방법을 알아보려면 함수 배포 가이드를 참고하세요.
삭제
Cloud Run에서는 서비스를 사용하지 않을 때 비용이 청구되지 않지만 Artifact Registry에 컨테이너 이미지를 저장하는 데 요금이 청구될 수 있습니다. 비용이 청구되지 않도록 컨테이너 이미지를 삭제하거나 Google Cloud 프로젝트를 삭제할 수 있습니다. Google Cloud 프로젝트를 삭제하면 프로젝트 내에서 사용되는 모든 리소스에 대한 비용 청구가 중지됩니다.
- In the Google Cloud console, go to the Manage resources page.
- In the project list, select the project that you want to delete, and then click Delete.
- In the dialog, type the project ID, and then click Shut down to delete the project.
다음 단계
Google Cloud 콘솔을 사용하여 Cloud Run에 샘플 함수를 배포하려면 빠른 시작: Google Cloud 콘솔을 사용하여 Cloud Run에 함수 배포를 참조하세요.
Google Cloud 콘솔과 Google Cloud CLI를 사용하여 함수를 배포하고 트리거를 만들려면 함수 배포를 참조하세요.
기존 함수를 보고 삭제하려면 서비스 버전 관리를 참조하세요.
자체 도구 모음에서 함수 컨테이너를 빌드하고 Cloud Run에 배포하려면 함수 빌드를 참조하세요.