This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
Can you share what your application logs are saying? The dockerfile
looks ok to me. Many node apps tend to start on port 3000 too, so
perhaps double check that the app is listening on port 8080
When fetching the secret are you using the "latest" version? Or are you
specifying a version? Can you share the code snippet that's getting the
secret?For example, in this sample
https://cloud.google.com/secret-manager/docs/access-secret-version#secr...
What's the output of the build process for building this function? When
you deploy a cloud function, it takes your code. And uploads it to a
storage bucket and then runs it through a managed build process. You can
see the output of this process in th...
Hey Reda, I don't believe that Cloud Functions has the support for
labels at this stage.There used to be a page that had the resources that
supported labels listed, but I think that section has been removed, as I
couldn't find it anymore. I was on th...
I don't think that the development server should be running in the
cloud! The development server that comes with react is just for local
development on your computer.In the cloud you'll need to either have a
webserver to forward traffic to, such as n...