hello team I am facing an issue with dagster k8s ...
# ask-community
a
hello team I am facing an issue with dagster k8s deployment, i followed this guide https://docs.dagster.io/deployment/guides/kubernetes/deploying-with-helm#step-2-build-a-docker-image-for-user-code • dagit and demon are failing
Defaulted container "dagster" out of: dagster, check-db-ready (init), init-user-deployment-mvp-analytics-pipeline (init)
Error from server (BadRequest): container "dagster" in pod "dagster-daemon-77db8bb995-5gj79" is waiting to start: PodInitializing
Dockerfile:
Copy code
FROM python:3.10.7-slim
RUN \
    /usr/local/bin/python -m pip install --upgrade pip \
    pip install dagster dagster-dbt dbt-clickhouse \
    &&  rm -rf /var \
    &&  rm -rf /root/.cache  \
    &&  rm -rf /usr/lib/python2.7 \
    &&  rm -rf /usr/lib/x86_64-linux-gnu/guile

RUN mkdir -p /opt/dagster/dagster_home /opt/dagster/app

COPY workspace.yaml /opt/dagster/app/
COPY mvp_analytics_pipeline/ /opt/dagster/app/mvp_analytics_pipeline
COPY mvp_analytics_dbt/ /opt/dagster/app/mvp_analytics_dbt

WORKDIR /opt/dagster/app
Values: