Paul
10/18/2025, 12:41 PMPaul
10/19/2025, 12:17 PMBerke Eruz
10/19/2025, 1:27 PM/auth_flow because my Airbyte is not exposed to public. Is there a work around to it?gaurav vivek
10/19/2025, 2:00 PMJohannes Haposan Napitupulu
10/20/2025, 11:16 AMChris Herron
10/20/2025, 4:21 PMTom Sweeting
10/20/2025, 5:13 PMKallin Nagelberg
10/20/2025, 5:26 PMworkloadLauncher.extraEnv, but I'm not certain.
***Questions:***
1. Is workloadLauncher.extraEnv the correct place for these variables in Helm v2?
2. Is there newer documentation or a different approach I should be using instead?
3. Would it be possible to update the docs to show the full values.yaml structure?
Currently using:
- Airbyte 2.0 with Helm v2 charts
- K3s cluster
- RDS Postgres → Snowflake connection
Thanks for any guidance! The product is great, just trying to get the resource configuration sorted. 🙏
Thanks!Johannes Haposan Napitupulu
10/21/2025, 8:16 AMversion = "1.8.5"
Then in values.yaml, should I change the global.version to "2.0.0" and also put the image name and tag in global.image.tag?
I dont want to change to helm v2 because it will required some effort, and if I force it it will give error like
Message: Could not resolve placeholder ${AIRBYTE_URL}
Message: Could not resolve placeholder ${STORAGE_BUCKET_AUDIT_LOGGING}Luc Lagrange
10/21/2025, 8:58 AMIwo
10/21/2025, 10:46 AMabctl install local and I have the organization-admin permission but no way to manage org/workspaces in the UI. I'm attaching a screenshot of what I see in the UI. I'm able to create workspaces over API but they don't seem to be available for my user either.Kimmo Lahdenkangas
10/21/2025, 6:07 PMAn internal transient Airbyte error has occurred. The sync should work fine on the next retry. Same pipeline configurations worked fine on an EC2 based deployment. It doesn't give much to go on but sounds like it could be a resource availability issue. I've been trying to tweak some configs, but have not been able to resolve yet.Guillermo Torres
10/21/2025, 7:58 PMChris Farrington
10/22/2025, 3:03 AMPaul
10/22/2025, 11:58 AMThiago
10/22/2025, 1:48 PMBohdan Tertyshnyi
10/22/2025, 1:50 PMMeghana
10/22/2025, 3:53 PMPaul
10/22/2025, 9:08 PMHuy Ngo
10/23/2025, 6:54 PMWarning from destination: Input was fully read, but some streams did not receive a terminal stream status message. If the destination did not encounter other errors, this likely indicates an error in the source or platform.
Connector is on the latest version 4.1.0
Any guidance on how to best troubleshoot / fix this?Brent Spencer
10/23/2025, 7:27 PMcristiano
10/24/2025, 1:30 AMmicrosoft-entra-id as the sourceType, I got that value from the source code of the connector. The request body is as follows:
{
"name": "microsoft_entra_id_test",
"workspaceId": "{{WORKSPACE_ID}}",
"configuration": {
"sourceType": "microsoft-entra-id",
"start_date": "2017-01-25T00:00:00Z",
"enable_experimental_streams": false,
"credentials": {
"credentials_title": "OAuth Credentials",
"client_id": "{{CLIENT_ID}}",
"client_secret": "{{CLIENT_SECRET}}",
"refresh_token": "{{REFRESH_TOKEN}}"
}
}
}
Response:
{
"status": 400,
"type": "[<https://reference.airbyte.com/reference/errors](https://reference.airbyte.com/reference/errors)>",
"title": "value-not-found",
"detail": "The submitted value could not be found.",
"documentationUrl": null,
"data": {
"value": "microsoft-entra-id"
}
}
This throws an error, saying it cannot find the sourceType of that value. This can be right since the connector we are using is a custom one so I requested the source details to see what kind of sourceType it needs to work, it said it was set as an empty string:
{
"sourceId": "8cf5d308-7056-45e5-8948-11d217607019",
"name": "Microsoft Entra Id",
"sourceType": "",
"definitionId": "9e1d5c73-b7a2-4642-b224-f78379fdf4d5",
"workspaceId": "7d4c5653-bd89-454a-b520-173e77c68fc8",
"configuration": {
"user_id": "**********",
"client_id": "**********",
"tenant_id": "**********",
"client_secret": "**********",
"__injected_declarative_manifest": {},
"__injected_components_py_checksums": {}
},
"createdAt": 1761225116
}
That's fine, however, setting it to an empty string yields the same response:
{
"name": "microsoft_entra_id_test",
"workspaceId": "{{WORKSPACE_ID}}",
"configuration": {
"sourceType": "",
"start_date": "2017-01-25T00:00:00Z",
"enable_experimental_streams": false,
"credentials": {
"credentials_title": "OAuth Credentials",
"client_id": "{{CLIENT_ID}}",
"client_secret": "{{CLIENT_SECRET}}",
"refresh_token": "{{REFRESH_TOKEN}}"
}
}
}
Response:
{
"status": 400,
"type": "[<https://reference.airbyte.com/reference/errors](https://reference.airbyte.com/reference/errors)>",
"title": "value-not-found",
"detail": "The submitted value could not be found.",
"documentationUrl": null,
"data": {
"value": ""
}
}
Is there any idea what I need to add to sourceType? I thought it was microsoft-entra-id but that does not work. Many thanks!Data Analytics
10/24/2025, 1:58 AMRajesh Koilpillai
10/24/2025, 2:19 AMAviran Moshe
10/24/2025, 1:51 PMNishant Gauttam
10/24/2025, 2:06 PMDouglas Perez
10/24/2025, 5:08 PMBrent Spencer
10/24/2025, 9:17 PMSlackbot
10/24/2025, 11:02 PMNeeraj N
10/25/2025, 2:32 PM