Crea ed esegui il deployment di una funzione Cloud Run HTTP con Ruby

Questa guida illustra il processo di scrittura di una funzione Cloud Run utilizzando il runtime Ruby. Esistono due tipi di funzioni Cloud Run:

  • Una funzione HTTP, che richiami dalle richieste HTTP standard.
  • Una funzione basata su eventi che utilizzi per gestire gli eventi della tua infrastruttura Cloud, ad esempio i messaggi in un argomento Pub/Sub o le modifiche in un bucket Cloud Storage.

Per maggiori dettagli, consulta la sezione sulla scrittura di funzioni HTTP e sulla scrittura di funzioni basate sugli eventi.

Prima di iniziare

  1. 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.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  3. Make sure that billing is enabled for your Google Cloud project.

  4. Enable the Cloud Functions, Cloud Build, Artifact Registry, Cloud Run, and Cloud Logging APIs.

    Enable the APIs

  5. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  6. Make sure that billing is enabled for your Google Cloud project.

  7. Enable the Cloud Functions, Cloud Build, Artifact Registry, Cloud Run, and Cloud Logging APIs.

    Enable the APIs

  8. Installa e inizializza Google Cloud SDK.
  9. Aggiorna e installa i componenti di gcloud con quanto segue .
    gcloud components update
  10. Prepara l'ambiente di sviluppo.

    Vai alla guida alla configurazione di Ruby

Crea la funzione

  1. Crea una directory sul tuo sistema locale per il codice della funzione:

    Linux o Mac OS X

    mkdir ~/helloworld
    cd ~/helloworld
    

    Windows

    mkdir %HOMEPATH%\helloworld
    cd %HOMEPATH%\helloworld
    
  2. Crea un file app.rb nella directory helloworld con seguenti contenuti:

    require "functions_framework"
    require "cgi"
    require "json"
    
    FunctionsFramework.http "hello_http" do |request|
      # The request parameter is a Rack::Request object.
      # See https://www.rubydoc.info/gems/rack/Rack/Request
      name = request.params["name"] ||
             (request.body.rewind && JSON.parse(request.body.read)["name"] rescue nil) ||
             "World"
      # Return the response body as a string.
      # You can also return a Rack::Response object, a Rack response array, or
      # a hash which will be JSON-encoded into a response.
      "Hello #{CGI.escape_html name}!"
    end

    Questa funzione di esempio prende un nome fornito nella richiesta HTTP e restituisce un saluto o "Hello World!" se non viene specificato alcun nome.

Specifica delle dipendenze

Le dipendenze in Ruby sono gestite con bundler e espresso in un file denominato Gemfile.

Quando esegui il deployment della funzione, Cloud Run Functions scarica e installa delle dipendenze dichiarate in Gemfile e Gemfile.lock utilizzando bundler.

Gemfile elenca i pacchetti richiesti dalla funzione, insieme a eventuali vincoli di versione facoltativi. Per una funzione Cloud Run, uno di questi pacchetti deve essere la gem functions_framework.

Per questo esercizio, crea un file denominato Gemfile nella stessa directory del file app.rb contenente il codice della funzione, con i seguenti contenuti:

source "https://rubygems.org"
gem "functions_framework", "~> 0.7"

Esegui questo comando per installare il gem functions_framework e le altre dependencies:

bundle install

Crea e testa la funzione in locale

Prima di eseguire il deployment della funzione, puoi crearla e testarla localmente.

  1. Esegui questo comando per utilizzare l'eseguibile functions-framework-ruby per avvia un server web locale che esegue la funzione hello_http:

    bundle exec functions-framework-ruby --target hello_http
    
  2. Testa la funzione visitando http://localhost:8080 in un browser o eseguendo curl localhost:8080 da un'altra finestra.

    Per maggiori dettagli, consulta Inviare richieste alle funzioni locali.

Consulta la sezione Test delle funzioni nella documentazione del framework Ruby Functions.

esegui il deployment della funzione

Per eseguire il deployment della funzione, esegui questo comando nel Directory helloworld:

  gcloud functions deploy ruby-http-function \
    --gen2 \
    --runtime=ruby32 \
    --region=REGION \
    --entry-point=hello_http \
    --source=. \
    --trigger-http \
    --allow-unauthenticated

Sostituisci REGION con il nome della regione Google Cloud in cui vuoi eseguire il deployment della funzione (ad es. us-west1).

Il flag facoltativo --allow-unauthenticated consente di raggiungere la funzione senza autenticazione.

Testa la funzione di cui hai eseguito il deployment

  1. Dopo il deployment della funzione, prendi nota della proprietà uri dall'output del comando gcloud functions deploy o recuperala con il seguente comando:

        gcloud functions describe ruby-http-function \
          --region=REGION
    

    Sostituisci REGION con il nome della regione Google Cloud in cui hai eseguito il deployment della funzione (ad esempio us-west1).

  2. Accedi all'URL dal browser. La funzione restituisce un messaggio "Hello World!" per creare un nuovo messaggio email.

Visualizza i log della funzione

Puoi rivedere i log della funzione con l'interfaccia utente di Cloud Logging o tramite Google Cloud CLI.

Visualizza i log con lo strumento a riga di comando

Per visualizzare i log per la tua funzione con gcloud CLI, utilizza il comando logs read:

    gcloud functions logs read \
      --gen2 \
      --limit=10 \
      --region=REGION \
      ruby-http-function

Sostituisci REGION con il nome della regione Google Cloud in cui hai eseguito il deployment della funzione (ad es. us-west1).

L'output è simile al seguente:

LEVEL: I
NAME: hello-http
TIME_UTC: 2023-06-01 00:09:41.477
LOG: Default STARTUP TCP probe succeeded after 1 attempt for container "hello__http-1" on port 8080.

LEVEL:
NAME: hello-http
TIME_UTC: 2023-06-01 00:09:41.451
LOG: I, [2023-06-01T00:09:41.451784 #1]  INFO -- : FunctionsFramework: Serving function "hello_http" on port 8080...

LEVEL:
NAME: hello-http
TIME_UTC: 2023-06-01 00:09:41.364
LOG: I, [2023-06-01T00:09:41.363923 #1]  INFO -- : FunctionsFramework: Starting server...

LEVEL:
NAME: hello-http
TIME_UTC: 2023-06-01 00:09:41.363
LOG: I, [2023-06-01T00:09:41.363855 #1]  INFO -- : FunctionsFramework: Looking for function name "hello_http"...

LEVEL:
NAME: hello-http
TIME_UTC: 2023-06-01 00:09:41.354
LOG: I, [2023-06-01T00:09:41.354150 #1]  INFO -- : FunctionsFramework: Loading functions from "./app.rb"...

Visualizza i log con la dashboard dei log

Per visualizzare i log della tua funzione con la dashboard di logging, apri la pagina Panoramica delle funzioni Cloud Run e fai clic sul nome della funzione nell'elenco, quindi sulla scheda Log.