Skip to content

Commit bdce894

Browse files
authored
Merge pull request #73 from BradleyMcCallionCOT/feat/71/add-deployment-annotation-support
feat: add support for deployment annotations
2 parents 4a1beca + f8475a0 commit bdce894

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

charts/wiremock/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.9.1
18+
version: 1.10.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/wiremock/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ metadata:
44
name: {{ include "wiremock.fullname" . }}
55
labels:
66
{{- include "wiremock.labels" . | nindent 4 }}
7+
{{- with .Values.deployment.annotations }}
8+
annotations:
9+
{{- toYaml . | nindent 4 }}
10+
{{- end }}
711
spec:
812
{{- if not .Values.autoscaling.enabled }}
913
replicas: {{ .Values.replicaCount }}

charts/wiremock/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ extraInitContainers: []
5656

5757
deploymentStrategy: {}
5858
# type: Recreate
59+
deployment:
60+
annotations: {}
5961

6062
# Load mappings from the templated configmap
6163
mappingsFromConfigmap: true

0 commit comments

Comments
 (0)