Cloud Run Functions는 클라우드 서비스를 빌드하고 연결하기 위한 서버리스 실행 환경입니다. Cloud Run Functions를 사용하면 클라우드 인프라와 서비스에서 발생하는 이벤트에 연결되는 단일 목적의 간단한 함수를 작성할 수 있습니다. 함수는 감시 중인 이벤트가 발생하면 또는 HTTP 요청에 의해 트리거됩니다.
이 페이지에서는 Google Cloud 콘솔을 사용하여 1세대 HTTP 함수를 만들고 배포하는 방법을 설명합니다.
Google Cloud 콘솔에서 이 태스크에 대한 단계별 안내를 직접 수행하려면 둘러보기를 클릭합니다.
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.
다른 옵션인 인증되지 않은 호출 허용을 사용하면 인증 없이 함수를 연결할 수 있습니다.
이는 테스트에는 유용하지만, 공개 API 또는 웹사이트를 만들지 않는 한 프로덕션에서 이 설정을 사용하지 않는 것이 좋습니다. 또한 회사 정책 설정에 따라 자동으로 작동하지 않을 수 있습니다. 인증이 필요한 함수를 호출하는 방법에 대한 자세한 내용은 호출 인증을 참조하세요.
저장을 클릭하여 변경사항을 저장한 후 다음을 클릭합니다.
소스 코드 필드에서 인라인 편집기를 선택합니다. 이 실습에서는 편집기에 제공된 기본 'Hello World' 함수를 사용합니다.
런타임 드롭다운을 사용하여 선택한 언어 런타임을 선택합니다.
함수 배포하기
페이지 하단에서 배포를 클릭합니다.
Cloud Run Functions 개요 페이지로 돌아가려면 west 아이콘을 클릭합니다.
배포 중인 함수 옆에 작은 스피너가 있습니다. 배포가 끝나면 스피너는 녹색 체크표시로 바뀝니다.
함수 테스트
함수의 more_vert메뉴를 표시하고 함수 테스트를 선택합니다.
테스트 페이지에서 함수 테스트를 클릭합니다.
출력 화면에 'Hello World!'라는 텍스트가 표시됩니다.
이제 메시지를 변경합니다. 트리거 이벤트 필드에서 {"message":"Hello, YOUR_NAME!"} 텍스트를 입력하고 YOUR_NAME을 이름으로 바꾼 후 함수 테스트를 클릭합니다.
예를 들어 'Rowan'이라는 이름을 입력했다면 출력 필드에 Hello, Rowan!이라는 메시지가 표시됩니다.
로그 필드에서 상태 코드 200은 성공을 나타냅니다.
로그 보기
로그를 확인하여 로그 기록에서 내 작업을 볼 수 있습니다.
Cloud Run Functions 개요 페이지에서 함수 관련 more_vert메뉴를 표시하고 로그 보기를 클릭합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-04-03(UTC)"],[[["This guide demonstrates how to create and deploy a 1st generation (1st gen) HTTP Cloud Run function using the Google Cloud console, specifically focusing on functions that are triggered by HTTP requests."],["The process involves creating a function within the Cloud Run functions Overview page, selecting the 1st gen environment, and configuring an HTTP trigger with the option for either requiring authentication or allowing unauthenticated access."],["The function's code can be managed within an inline editor, and once configured, users can deploy the function directly from the console, and upon completion of deployment, the green check mark will signify a successful deployment."],["Testing the deployed function is straightforward, allowing users to view output and logs, with an example provided to test changing the message to be displayed, including information regarding the success status code of 200."],["After deploying and testing the function, the guide provides links to resources to learn how to write, deploy, call, and monitor Cloud Run functions, as well as writing a function from scratch."]]],[]]