Skip to content

Commit

Permalink
Add AIRBYTE_ENTRYPOINT for Kubernetes support (#4469).
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosmarxm committed Jul 3, 2021
1 parent 78acd7e commit 68f78d5
Show file tree
Hide file tree
Showing 10 changed files with 4,082 additions and 1,971 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "d29764f8-80d7-4dd7-acbe-1a42005ee5aa",
"name": "Zendesk Support",
"dockerRepository": "airbyte/source-zendesk-support-singer",
"dockerImageTag": "0.2.2",
"dockerImageTag": "0.2.3",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-zendesk-support-singer",
"icon": "zendesk.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
- sourceDefinitionId: d29764f8-80d7-4dd7-acbe-1a42005ee5aa
name: Zendesk Support
dockerRepository: airbyte/source-zendesk-support-singer
dockerImageTag: 0.2.2
dockerImageTag: 0.2.3
documentationUrl: https://hub.docker.com/r/airbyte/source-zendesk-support-singer
icon: zendesk.svg
- sourceDefinitionId: d8313939-3782-41b0-be29-b3ca20d8dd3a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ public abstract class SourceAcceptanceTest extends SourceAbstractTest {
"airbyte/source-gitlab-singer",
"airbyte/source-google-workspace-admin-reports",
"airbyte/source-zendesk-talk",
"airbyte/source-zendesk-support-singer",
"airbyte/source-quickbooks-singer",
"airbyte/source-jira");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/*
ENV CODE_PATH="source_zendesk_support_singer"
ENV AIRBYTE_IMPL_MODULE="source_zendesk_support_singer"
ENV AIRBYTE_IMPL_PATH="SourceZendeskSupportSinger"
ENV AIRBYTE_ENTRYPOINT "/airbyte/base.sh"

WORKDIR /airbyte/integration_code
COPY $CODE_PATH ./$CODE_PATH
COPY setup.py ./
RUN pip install .

LABEL io.airbyte.version=0.2.2
LABEL io.airbyte.version=0.2.3
LABEL io.airbyte.name=airbyte/source-zendesk-support-singer
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,12 @@
}
},
"type": ["null", "object"]
}
}
},
"supported_sync_modes": ["incremental"],
"source_defined_cursor": true
},
"sync_mode": "incremental",
"destination_sync_mode": "append"
},
{
"stream": {
Expand Down Expand Up @@ -256,8 +260,12 @@
"type": ["null", "integer"]
}
}
}
}
},
"supported_sync_modes": ["incremental"],
"source_defined_cursor": true
},
"sync_mode": "incremental",
"destination_sync_mode": "append"
}
]
}

0 comments on commit 68f78d5

Please sign in to comment.