Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion deploy/charts/buzz/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: |
PostgreSQL and Redis. Configurable for single-node evaluation
(subcharts on) and HA production (external services, existingSecret).
type: application
version: 0.1.3
version: 0.1.4
appVersion: "0.1.0"
home: https://github.com/block/buzz
sources:
Expand All @@ -25,6 +25,8 @@ annotations:
artifacthub.io/changes: |
- kind: added
description: Initial chart for Buzz relay.
- kind: added
description: relay.deploymentAnnotations knob for Deployment-level annotations (e.g. Stakater Reloader).
artifacthub.io/license: Apache-2.0

# Optional eval-only subcharts. Production deploys disable both and point
Expand Down
6 changes: 6 additions & 0 deletions deploy/charts/buzz/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ metadata:
name: {{ include "buzz.fullname" . }}
labels:
{{- include "buzz.labels" . | nindent 4 }}
{{- with .Values.relay.deploymentAnnotations }}
# Deployment-level annotations, e.g. Stakater Reloader to auto-roll pods
# when an external Secret (DB/Redis creds) rotates.
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
replicas: {{ .Values.replicaCount }}
strategy:
Expand Down
4 changes: 4 additions & 0 deletions deploy/charts/buzz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ relay:

podAnnotations: {}
podLabels: {}
# Annotations on the relay Deployment resource itself (not the pod template).
# Set e.g. secret.reloader.stakater.com/reload: <secret-name> to have
# Stakater Reloader roll the pods when that Secret rotates.
deploymentAnnotations: {}
nodeSelector: {}
tolerations: []
affinity: {}
Expand Down