diff --git a/charts/wiremock/Chart.yaml b/charts/wiremock/Chart.yaml index 1f75b80..d53c64d 100644 --- a/charts/wiremock/Chart.yaml +++ b/charts/wiremock/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 1.9.1 +version: 1.10.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/wiremock/templates/deployment.yaml b/charts/wiremock/templates/deployment.yaml index f1c2df7..4c117dd 100644 --- a/charts/wiremock/templates/deployment.yaml +++ b/charts/wiremock/templates/deployment.yaml @@ -4,6 +4,10 @@ metadata: name: {{ include "wiremock.fullname" . }} labels: {{- include "wiremock.labels" . | nindent 4 }} + {{- with .Values.deployment.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} spec: {{- if not .Values.autoscaling.enabled }} replicas: {{ .Values.replicaCount }} diff --git a/charts/wiremock/values.yaml b/charts/wiremock/values.yaml index 09979c3..3380a6e 100644 --- a/charts/wiremock/values.yaml +++ b/charts/wiremock/values.yaml @@ -56,6 +56,8 @@ extraInitContainers: [] deploymentStrategy: {} # type: Recreate +deployment: + annotations: {} # Load mappings from the templated configmap mappingsFromConfigmap: true