diff --git a/charts/langkit/CHANGELOG.md b/charts/langkit/CHANGELOG.md index fc04abd..b9303ee 100644 --- a/charts/langkit/CHANGELOG.md +++ b/charts/langkit/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning] (https://semver.org/spec/v2.0.0.html). + +## [0.15.0] - 2023-03-22 + +### Added + +- Added configurable annotations for `Service` resource + ## [0.14.0] - 2023-03-21 ### Changed diff --git a/charts/langkit/Chart.yaml b/charts/langkit/Chart.yaml index 4c778a4..363ad43 100644 --- a/charts/langkit/Chart.yaml +++ b/charts/langkit/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: langkit description: A Helm chart for LangKit container deployment type: application -version: 0.14.0 +version: 0.15.0 appVersion: "1.0.11" diff --git a/charts/langkit/README.md b/charts/langkit/README.md index 83ff203..9cbd106 100644 --- a/charts/langkit/README.md +++ b/charts/langkit/README.md @@ -109,7 +109,7 @@ helm-docs --dry-run | image.containerPort | int | `8000` | | | image.pullPolicy | string | `"Always"` | | | image.repository | string | `"registry.gitlab.com/whylabs/langkit-container"` | | -| image.tag | string | `"1.0.8"` | | +| image.tag | string | `"1.0.11"` | | | imagePullSecrets[0].name | string | `"langkit-gitlab-registry-secret"` | | | ingress.annotations | object | `{}` | | | ingress.className | string | `""` | | @@ -138,6 +138,7 @@ helm-docs --dry-run | resources.requests.memory | string | `"4Gi"` | | | secrets.langkitApiSecret.name | string | `"langkit-api-secret"` | Name of the secret that stores the WhyLabs LangKit API Secret | | secrets.whylabsApiKey.name | string | `"whylabs-api-key"` | Name of the secret that stores the WhyLabs API Key | +| service.annotations | object | `{}` | | | service.port | int | `80` | | | service.type | string | `"ClusterIP"` | | | serviceAccount.annotations | object | `{}` | | diff --git a/charts/langkit/templates/service.yaml b/charts/langkit/templates/service.yaml index 8f2214c..fb6a4d2 100644 --- a/charts/langkit/templates/service.yaml +++ b/charts/langkit/templates/service.yaml @@ -4,6 +4,10 @@ metadata: name: {{ include "langkit.fullname" . }} labels: {{- include "langkit.labels" . | nindent 4 }} + {{- if .Values.service.annotations }} + annotations: + {{- toYaml .Values.service.annotations | nindent 4 }} + {{- end }} spec: type: {{ .Values.service.type }} ports: diff --git a/charts/langkit/values.yaml b/charts/langkit/values.yaml index ae5b022..d3100fd 100644 --- a/charts/langkit/values.yaml +++ b/charts/langkit/values.yaml @@ -63,6 +63,7 @@ containers: mountPath: /tmp service: + annotations: {} type: ClusterIP port: 80