Jacob Dunning
04/02/2025, 6:47 PMWilliam Babcock
04/03/2025, 6:46 PMJohannes Müller
04/07/2025, 7:43 AMMorgan Kerle
04/14/2025, 1:03 AMRoberto Tolosa
04/17/2025, 5:10 PMJohn Blakeman
04/22/2025, 5:06 PMorders
and customers
streams will move to GraphQL in source-shopify
?verbotenj
04/23/2025, 2:17 PMPrzemysław Dąbek
05/08/2025, 8:22 PMAnthony Smart
05/09/2025, 10:33 AMThéo
05/12/2025, 1:37 PMEuan Blackledge
05/26/2025, 1:51 PMverbotenj
05/27/2025, 7:59 PMJOB_MAIN_CONTAINER_*
settings. https://github.com/airbytehq/airbyte-platform/blob/main/charts/airbyte/templates/env-configmap.yaml#L98-L101Gediminas Kalnutis
05/28/2025, 11:02 AMKevin Conseil
06/03/2025, 8:55 AMPointagram
06/18/2025, 1:21 PMKemp Po
06/21/2025, 7:20 AMairbyte-airbyte-secrets
with db information and other secrets, but we still expect the user to manually deploy another secret with similar information into airbyte-config-secrets
what’s the point of that? imo it just makes it confusing and harder to understandAshis Parajuli
06/25/2025, 10:32 PMAlexandros Gkougkousis
07/02/2025, 8:15 AMPrzemysław Dąbek
07/02/2025, 9:09 AMElena Hearty
07/09/2025, 6:56 PMMorgan Kerle
07/15/2025, 4:36 AMSarang Kanfade
07/16/2025, 5:34 PMRaphaël Hidalgo
07/17/2025, 11:56 AMWilliam Guicheney
07/17/2025, 3:51 PMAlan Chan
07/18/2025, 12:37 AMJono Kumarich
07/20/2025, 10:43 PM1.0.1
to 1.0.2
. We are now getting a missing certificate JDBC error and are not able to rectify it on our side. I have confirmed this occurs on our organisation account as well as on a separate Snowflake trial account. As we use cloud, we are unable to roll back to the previous release.
java.lang.RuntimeException: Column name discovery query failed: JDBC driver internal error: Max retry reached for the download of chunk#0 (Total chunks: 1) retry: 7,
error: net.snowflake.client.jdbc.SnowflakeSQLLoggedException: JDBC driver encountered communication error. Message: No trusted certificate found
Verify that the hostnames and portnumbers in SYSTEM$ALLOWLIST are added to your firewall's allowed list. To troubleshoot your connection further, you can refer to this article: <https://docs.snowflake.com/en/user-guide/client-connectivity-troubleshooting/overview>.
I have contacted support 5 days ago but have not received a reply. Would love some sort of guidance or assistance as this has completely broken some of our critical syncs.Shakar Bakr
07/30/2025, 11:14 AMv1.7.2
Hello good people,
I'm having this issue in deploying Airbyte, when I try to deploy it using the helm chart I'm getting this error:
Could not determine release state: unable to determine cluster state: Deployment/data-pipelines/airbyte-workload-api-server dry-run failed: failed to create typed patch object (data-pipelines/airbyte-workload-api-server; apps/v1, Kind=Deployment): .spec.template.spec.containers[name="airbyte-workload-api-server-container"].env: duplicate entries for key [name="AB_JWT_SIGNATURE_SECRET"]
the issue is the charts has duplicate entries for AB_JWT_SIGNATURE_SECRET
env variable which is inside workload-api-server chart -> templates -> deployment.yaml:
- name: WORKLOAD_API_BEARER_TOKEN
valueFrom:
secretKeyRef:
name: {{ index .Values "workloadApi" "bearerTokenSecretName" | default (printf "%s-airbyte-secrets" .Release.Name ) }}
key: {{ index .Values "workloadApi" "bearerTokenSecretKey" | default "WORKLOAD_API_BEARER_TOKEN" }}
- name: AB_JWT_SIGNATURE_SECRET ---------------------------------------> First Entry here <----------------------------------------------------------------------
valueFrom:
secretKeyRef:
name: {{ .Values.global.auth.secretName | default "airbyte-auth-secrets" | quote }}
key: {{ .Values.global.auth.jwtSignatureSecretKey | default "jwt-signature-secret" | quote }}
- name: MICRONAUT_ENVIRONMENTS
valueFrom:
configMapKeyRef:
name: {{ .Release.Name }}-airbyte-env
key: WORKERS_MICRONAUT_ENVIRONMENTS
- name: AB_JWT_SIGNATURE_SECRET ---------------------------------------> Second Entry here <---------------------------------------------------------------------
valueFrom:
secretKeyRef:
name: {{ .Values.global.auth.secretName | default "airbyte-auth-secrets" | quote }}
key: {{ .Values.global.auth.jwtSignatureSecretKey | default "jwt-signature-secret" | quote }}
Stockton Fisher
08/06/2025, 3:58 PMJillian Moore
08/06/2025, 8:46 PMRowan Moul
08/14/2025, 9:27 PMwebapp.ingress
in values.yaml
for the server container. I see no github issues about this (open or closed). Surely I am not the only person in the world who was using this portion of the helm chart? Now it seems I have to separately deploy an ingress resource to make the webapp available again, which is a rather large breaking change in the chart itself. This could have easily been migrated seamlessly in the chart by reading webapp.ingress
and using those values to make an ingress resource for the server container. Then this backfill functionality could be removed in the v2 helm chart in place of a dedicated server.ingress
section in values.yaml
I created the following issue for this:
https://github.com/airbytehq/airbyte/issues/64941