Skip to content

Commit

Permalink
Merge pull request #220 from RADAR-base/version/radar-jdbc-connector-…
Browse files Browse the repository at this point in the history
…10.5.3

[radar-jdbc-connector] Upgrade to appversion 10.5.3
  • Loading branch information
pvannierop authored Jul 11, 2024
2 parents 2a2dcb6 + 78358f2 commit 6b1b414
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/radar-jdbc-connector/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "10.5.2"
appVersion: "10.5.3"
name: radar-jdbc-connector
description: A Helm chart for RADAR-base JDBC Kafka connector. This is a fork of the Kafka JDBC connector which allows data from topics to be imported into JDBC databases (including TimescaleDB databases which is used in the dashboard pipeline).
version: 0.5.1
version: 0.5.2
icon: "http://radar-base.org/wp-content/uploads/2022/09/Logo_RADAR-Base-RGB.png"
sources:
- https://github.com/RADAR-base/radar-helm-charts/tree/main/charts/radar-jdbc-connector
Expand Down
4 changes: 2 additions & 2 deletions charts/radar-jdbc-connector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# radar-jdbc-connector
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/radar-jdbc-connector)](https://artifacthub.io/packages/helm/radar-base/radar-jdbc-connector)

![Version: 0.5.1](https://img.shields.io/badge/Version-0.5.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.5.2](https://img.shields.io/badge/AppVersion-10.5.2-informational?style=flat-square)
![Version: 0.5.2](https://img.shields.io/badge/Version-0.5.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 10.5.3](https://img.shields.io/badge/AppVersion-10.5.3-informational?style=flat-square)

A Helm chart for RADAR-base JDBC Kafka connector. This is a fork of the Kafka JDBC connector which allows data from topics to be imported into JDBC databases (including TimescaleDB databases which is used in the dashboard pipeline).

Expand Down Expand Up @@ -34,7 +34,7 @@ A Helm chart for RADAR-base JDBC Kafka connector. This is a fork of the Kafka JD
|-----|------|---------|-------------|
| replicaCount | int | `1` | Number of radar-jdbc-connector replicas to deploy |
| image.repository | string | `"radarbase/radar-jdbc-connector"` | radar-jdbc-connector image repository |
| image.tag | string | `"10.5.2"` | radar-jdbc-connector image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. |
| image.tag | string | `nil` | radar-jdbc-connector image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. |
| image.pullPolicy | string | `"IfNotPresent"` | radar-jdbc-connector image pull policy |
| imagePullSecrets | list | `[]` | Docker registry secret names as an array |
| nameOverride | string | `""` | String to partially override radar-jdbc-connector.fullname template with a string (will prepend the release name) |
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-jdbc-connector/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ spec:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: CONNECT_BOOTSTRAP_SERVERS
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-jdbc-connector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ image:
repository: radarbase/radar-jdbc-connector
# -- radar-jdbc-connector image tag (immutable tags are recommended)
# Overrides the image tag whose default is the chart appVersion.
tag: 10.5.2
tag:
# -- radar-jdbc-connector image pull policy
pullPolicy: IfNotPresent

Expand Down

0 comments on commit 6b1b414

Please sign in to comment.