Skip to content

Commit 58f20c4

Browse files
Destination Kafka: Allow configuring PLAIN SASL (#12876)
* airbyte: Allow configuring PLAIN SASL mechanism for Kafka dest connector through WebApp * bump up the version of kafka dest connector * bump up the image tag for kafka destination connector in defs * update _specs for kafka destination connector to match defs; SeedConnectorSpecs did not update it automatically
1 parent aea7205 commit 58f20c4

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

airbyte-config/init/src/main/resources/seed/destination_definitions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
- name: Kafka
128128
destinationDefinitionId: 9f760101-60ae-462f-9ee6-b7a9dafd454d
129129
dockerRepository: airbyte/destination-kafka
130-
dockerImageTag: 0.1.7
130+
dockerImageTag: 0.1.8
131131
documentationUrl: https://docs.airbyte.io/integrations/destinations/kafka
132132
icon: kafka.svg
133133
releaseStage: alpha

airbyte-config/init/src/main/resources/seed/destination_specs.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1910,7 +1910,7 @@
19101910
supportsDBT: false
19111911
supported_destination_sync_modes:
19121912
- "append"
1913-
- dockerImage: "airbyte/destination-kafka:0.1.7"
1913+
- dockerImage: "airbyte/destination-kafka:0.1.8"
19141914
spec:
19151915
documentationUrl: "https://docs.airbyte.io/integrations/destinations/kafka"
19161916
connectionSpecification:
@@ -2037,6 +2037,7 @@
20372037
- "OAUTHBEARER"
20382038
- "SCRAM-SHA-256"
20392039
- "SCRAM-SHA-512"
2040+
- "PLAIN"
20402041
sasl_jaas_config:
20412042
title: "SASL JAAS Config"
20422043
description: "JAAS login context parameters for SASL connections in\

airbyte-integrations/connectors/destination-kafka/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-kafka
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.1.7
19+
LABEL io.airbyte.version=0.1.8
2020
LABEL io.airbyte.name=airbyte/destination-kafka

docs/integrations/destinations/kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ _NOTE_: Some configurations for SSL are not available yet.
9898

9999
| Version | Date | Pull Request | Subject |
100100
| :--- | :--- | :--- | :--- |
101-
| 0.1.7 | 2022-04-19 | [12134](https://github.com/airbytehq/airbyte/pull/12134) | Add PLAN Auth |
101+
| 0.1.7 | 2022-04-19 | [12134](https://github.com/airbytehq/airbyte/pull/12134) | Add PLAIN Auth |
102102
| 0.1.6 | 2022-02-15 | [10186](https://github.com/airbytehq/airbyte/pull/10186) | Add SCRAM-SHA-512 Auth |
103103
| 0.1.5 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | Add `-XX:+ExitOnOutOfMemoryError` JVM option |
104104
| 0.1.4 | 2022-01-31 | [\#9905](https://github.com/airbytehq/airbyte/pull/9905) | Fix SASL config read issue |

docs/integrations/sources/kafka.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The Kafka source connector supports the following[sync modes](https://docs.airby
4444

4545
| Version | Date | Pull Request | Subject |
4646
| :------ | :-------- | :------------------------------------------------------| :---------------------------------------- |
47-
| 0.1.5 | 2022-04-19 | [12134](https://github.com/airbytehq/airbyte/pull/12134) | Add PLAN Auth |
47+
| 0.1.5 | 2022-04-19 | [12134](https://github.com/airbytehq/airbyte/pull/12134) | Add PLAIN Auth |
4848
| 0.1.4 | 2022-02-15 | [10186](https://github.com/airbytehq/airbyte/pull/10186) | Add SCRAM-SHA-512 Auth |
4949
| 0.1.3 | 2022-02-14 | [10256](https://github.com/airbytehq/airbyte/pull/10256) | Add `-XX:+ExitOnOutOfMemoryError` JVM option |
5050
| 0.1.2 | 2021-12-21 | [8865](https://github.com/airbytehq/airbyte/pull/8865) | Fix SASL config read issue |

0 commit comments

Comments
 (0)