Thanks!
- I deployed to GKE following your tutorial, via Kustomize.
- Response payload:
<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>502 Server Error</title>
</head>
<body text=#000000 bgcolor=#ffffff>
<h1>Error: Server Error</h1>
<h2>The server encountered a temporary error and could not complete your request.<p>Please try again in 30 seconds.</h2>
<h2></h2>
</body></html>
- Is it
connected to the internet
? I tried ensuring that this was the case earlier. I believe we have opened all outgoing network traffic, and I tested it with curl on both the server and temporal pods:
kubectl exec --stdin --tty airbyte-temporal-895c445d7-rn88r -- /bin/bash
bash-5.0# curl https://people.sc.fsu.edu/~jburkardt/data/csv/addresses.csv
John,Doe,120 jefferson st.,Riverside, NJ, 08075
Jack,McGinnis,220 hobo Av.,Phila, PA,09119
"John ""Da Man""",Repici,120 Jefferson St.,Riverside, NJ,08075
Stephen,Tyler,"7452 Terrace ""At the Plaza"" road",SomeTown,SD, 91234
,Blankman,,SomeTown, SD, 00298
"Joan ""the bone"", Anne",Jet,"9th, at Terrace plc",Desert City,CO,00123
kubectl exec --stdin --tty airbyte-server-587c49495f-vhzns -- /bin/bash
root@airbyte-server-587c49495f-vhzns:/app# apt-get update
root@airbyte-server-587c49495f-vhzns:/app# apt-get -y install curl
root@airbyte-server-587c49495f-vhzns:/app# curl https://people.sc.fsu.edu/~jburkardt/data/csv/addresses.csv
John,Doe,120 jefferson st.,Riverside, NJ, 08075
Jack,McGinnis,220 hobo Av.,Phila, PA,09119
"John ""Da Man""",Repici,120 Jefferson St.,Riverside, NJ,08075
Stephen,Tyler,"7452 Terrace ""At the Plaza"" road",SomeTown,SD, 91234
,Blankman,,SomeTown, SD, 00298
"Joan ""the bone"", Anne",Jet,"9th, at Terrace plc",Desert City,CO,00123
- Is there something else I should be doing to ensure that I have internet access? Can I manually attempt to refresh the source list?
- Temporal logs here: temporal.log (112.7 KB)