Status Update
Comments
va...@google.com <va...@google.com>
ku...@google.com <ku...@google.com> #2
Hello,
Thank you for contacting the Google Cloud support team.
I have gone through your reported issue, however it seems like this is an issue observed specifically at your end within your project environment. It would need more specific debugging and analysis. To ensure a faster resolution and dedicated support for your issue, I kindly request you to file a support ticket by clicking
Please note that the Issue Tracker is primarily meant for reporting commonly observed issues and requesting new features. For individual support issues, it is best to utilize the support ticketing system. I'm going to close this issue which will no longer be monitored. If you have any additional issues or concerns, please don’t hesitate to create a new issue on the
Thank you, we appreciate your cooperation!
Description
Problem you have encountered:
error:
gcloud app deploy code is stuck and timeout with below error:
Updating service [stlit-4] (this may take several minutes)...working...
What you expected to happen:
Steps to reproduce:
Configuration:
app.yml:
runtime: custom
env: flex
service: stlit-4
runtime_config:
operating_system: ubuntu22
network:
name: dp-dev
subnetwork_name: appengine-dev
manual_scaling:
instances: 1
resources:
cpu: 1
memory_gb: 0.5
disk_size_gb: 10
Dockerfile:
FROM python:3.9-slim
EXPOSE 8080
RUN apt-get update
RUN mkdir -p /src
COPY . /src/
WORKDIR /src
RUN pip3 install -r requirements.txt
ENTRYPOINT ["streamlit", "run", "--server.enableCORS=false", "--server.port=8080", "main.py"]
Command executed:
gcloud app deploy