diff --git a/charts/catalog-server/Chart.yaml b/charts/catalog-server/Chart.yaml index e078f5fc..7c7c6f26 100644 --- a/charts/catalog-server/Chart.yaml +++ b/charts/catalog-server/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 -appVersion: "0.8.8" +appVersion: "0.8.10" description: A Helm chart for RADAR-base catalogue server. This application creates RADAR-base topics in Kafka, registers schemas in Schema Registry and keeps a catalog of available source types. name: catalog-server -version: 0.6.0 +version: 0.6.1 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/catalog-server diff --git a/charts/catalog-server/README.md b/charts/catalog-server/README.md index 2343bf92..d581b527 100644 --- a/charts/catalog-server/README.md +++ b/charts/catalog-server/README.md @@ -3,7 +3,7 @@ # catalog-server [![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/catalog-server)](https://artifacthub.io/packages/helm/radar-base/catalog-server) -![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.8](https://img.shields.io/badge/AppVersion-0.8.8-informational?style=flat-square) +![Version: 0.6.1](https://img.shields.io/badge/Version-0.6.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.8.10](https://img.shields.io/badge/AppVersion-0.8.10-informational?style=flat-square) A Helm chart for RADAR-base catalogue server. This application creates RADAR-base topics in Kafka, registers schemas in Schema Registry and keeps a catalog of available source types. @@ -33,7 +33,7 @@ A Helm chart for RADAR-base catalogue server. This application creates RADAR-bas |-----|------|---------|-------------| | replicaCount | int | `1` | Number of catalog-server replicas to deploy | | image.repository | string | `"radarbase/radar-schemas-tools"` | catalog-server image repository | -| image.tag | string | `"0.8.8"` | catalog-server image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. | +| image.tag | string | `nil` | catalog-server image tag (immutable tags are recommended) Overrides the image tag whose default is the chart appVersion. | | image.pullPolicy | string | `"IfNotPresent"` | catalog-server image pull policy | | imagePullSecrets | list | `[]` | Docker registry secret names as an array | | nameOverride | string | `""` | String to partially override catalog-server.fullname template with a string (will prepend the release name) | diff --git a/charts/catalog-server/templates/deployment.yaml b/charts/catalog-server/templates/deployment.yaml index c4226a8b..7b8775a0 100644 --- a/charts/catalog-server/templates/deployment.yaml +++ b/charts/catalog-server/templates/deployment.yaml @@ -96,7 +96,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 }}" args: - radar-catalog-server - -c diff --git a/charts/catalog-server/values.yaml b/charts/catalog-server/values.yaml index 47ad5f5b..d500a480 100644 --- a/charts/catalog-server/values.yaml +++ b/charts/catalog-server/values.yaml @@ -10,7 +10,7 @@ image: repository: radarbase/radar-schemas-tools # -- catalog-server image tag (immutable tags are recommended) # Overrides the image tag whose default is the chart appVersion. - tag: 0.8.8 + tag: # -- catalog-server image pull policy pullPolicy: IfNotPresent