Skip to content

Commit

Permalink
🎉 Source Looker: enable supporting of customer-hosted (self-hosted) i…
Browse files Browse the repository at this point in the history
…nstances

* feature to support Looker self-hosted instance domain(#3393)

* changing self-hosted instances to any url(#3393)

* fixing build failures

* regexp for any URL

* fixing build failures

* fixing regexp pattern and adding unittests

* writing unitests using pytest

* pytest-fixture for unit-tests

* Source Looker #3587 - remove domain spec field pattern

* Source Looker #3587 - fix description of domain spec field

* Source Looker #3393 - bum version

Co-authored-by: root <root@DESKTOP-SS2MC07.localdomain>
Co-authored-by: Vitalii Vdovenko <vitalii.vdovenko@zazmic.com>
  • Loading branch information
3 people committed Jun 22, 2021
1 parent b1a6f3b commit 3d44999
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "00405b19-9768-4e0c-b1ae-9fc2ee2b2a8c",
"name": "Looker",
"dockerRepository": "airbyte/source-looker",
"dockerImageTag": "0.2.2",
"dockerImageTag": "0.2.3",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-looker",
"icon": "looker.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
- sourceDefinitionId: 00405b19-9768-4e0c-b1ae-9fc2ee2b2a8c
name: Looker
dockerRepository: airbyte/source-looker
dockerImageTag: 0.2.2
dockerImageTag: 0.2.3
documentationUrl: https://hub.docker.com/r/airbyte/source-looker
icon: looker.svg
- sourceDefinitionId: ed799e2b-2158-4c66-8da4-b40fe63bc72a
Expand Down
4 changes: 4 additions & 0 deletions airbyte-integrations/connectors/source-looker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Changelog

## 0.2.3
Enable supporting of customer-hosted (self-hosted) instances
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-looker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ RUN pip install .

ENV AIRBYTE_ENTRYPOINT "/airbyte/base.sh"

LABEL io.airbyte.version=0.2.2
LABEL io.airbyte.version=0.2.3
LABEL io.airbyte.name=airbyte/source-looker
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
"properties": {
"domain": {
"type": "string",
"pattern": ["^[a-zA-Z0-9._-]*\\.looker\\.com$"],
"examples": ["domainname.looker.com"],
"description": "Domain for your Looker account, e.g. airbyte.cloud.looker.com"
"examples": [
"domainname.looker.com",
"looker.clientname.com",
"123.123.124.123:8000"
],
"description": "Domain for your Looker account, e.g. airbyte.cloud.looker.com,looker.[clientname].com,IP address"
},
"client_id": {
"title": "Client ID",
Expand Down

0 comments on commit 3d44999

Please sign in to comment.