zfmoodydub
RRunPod
•Created by zfmoodydub on 3/23/2025 in #⚡|serverless
RunPod Serverless Inter-Service Communication: Gateway Authentication Issues
What I've Tried
Direct connection attempts using various URLs:
All result in connection errors
response = requests.post(
"http://localhost:8000/api/webhook/completion",
json=payload,
headers=headers
)
API Gateway requests with various authentication headers:
pythonCopygateway_payload = {
"input": {
"method": "POST",
"path": "/api/webhook/completion",
"headers": {
"Content-Type": "application/json",
"Accept": "application/json",
"Authorization": "Bearer api-key-123",
"x-api-key": "api-key-123",
"x-request-origin": "origin-value"
},
"body": actual_payload
}
}
response = requests.post(
"https://api.runpod.ai/v2/abc123/runsync",
json=gateway_payload
)
5 replies
RRunPod
•Created by Fazil T on 12/22/2024 in #⛅|pods-clusters
Unable to run jupyter on custom docker image
got it to work, thanks guys
25 replies
RRunPod
•Created by Fazil T on 12/22/2024 in #⛅|pods-clusters
Unable to run jupyter on custom docker image
what does just hardcode it mean?
also how do i know if my configuration is correct?
25 replies
RRunPod
•Created by Fazil T on 12/22/2024 in #⛅|pods-clusters
Unable to run jupyter on custom docker image
added this inside my dockerfile:
RUN echo '#!/bin/bash \n\
echo "Starting Jupyter Lab..." \n\
cd / && \n\
conda run -n automasher jupyter lab --allow-root \n\
--no-browser \n\
--port=8888 \n\
--ip=* \n\
--FileContentsManager.delete_to_trash=False \n\
--ContentsManager.allow_hidden=True \n\
--ServerApp.terminado_settings='"'"'{"shell_command":["/bin/bash"]}'"'"' \n\
--ServerApp.token="" \n\
--ServerApp.password="" \n\
--ServerApp.allow_origin=* \n\
--ServerApp.preferred_dir=/workspace &> /workspace/logs/jupyter.log & \n\
echo "Jupyter Lab started" \n\
conda activate automasher \n\
tail -f /dev/null' > /start_jupyter.sh && \
chmod +x /start_jupyter.sh
ENTRYPOINT ["/start_jupyter.sh"]
i must be doing somethign wrong25 replies
RRunPod
•Created by yoink on 6/10/2024 in #⛅|pods-clusters
Custom Template with Jupyter not working
hey @yoink do you think you could assist me with a similar problem? I would love to know:
1. what your dockerfile looks like (nothing specific to your project, just how you specified jupyter to be installed, if you used a runpod base image, or something like "FROM python:3.12" instead)
2. do you have a pre_start.sh and a start.sh
3. anything else you think would be helpful
thanks in advance
9 replies
RRunPod
•Created by Fazil T on 12/22/2024 in #⛅|pods-clusters
Unable to run jupyter on custom docker image

25 replies
RRunPod
•Created by Fazil T on 12/22/2024 in #⛅|pods-clusters
Unable to run jupyter on custom docker image
@Fazil T did you end up figuring this out? im also having the same problem
25 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
thanks for your help nerdy
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
even on hotspot? i dont have any antivirus on my machine
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
In Network, the browser is periodically doing a get request for each of the pod ids, i assume to get their status:
https://hapi.runpod.net/v1/pod/w0t2xesmy98e2a
404 Not Found
https://hapi.runpod.net/v1/pod/lfmpf5fj6tbuc0
404 Not Found
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
and ive done this plenty of times before.
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
i dont think thats it though im on my hotspot now and the same thing is happenning
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
at in laws house for the holidays with a techy father in law hes probably got it on the modem 🙄 . was hoping it wasnt that. thanks
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
if youd like to see the request response lmk which one. ive posted a few above
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs

30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
sorry, it is every one i start up failing to initiate
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
{command: ["bash", "-c", "ps -fC 'rclone copy' >/dev/null && echo 'running' || echo 'not running'"]}
30 replies
RRunPod
•Created by zfmoodydub on 12/24/2024 in #⛅|pods-clusters
PyTorch Pods never initializing - stuck waiting for logs
there are a lot of command requests failing
30 replies
RRunPod
•Created by zfmoodydub on 11/4/2024 in #⚡|serverless
not getting any serverless logs using runpod==1.6.2
using FROM runpod/worker-vllm:stable-cuda12.1.0
base image
2 replies