[homebridge] Missing strategyType in homebridge deployment (#110)

* Missing strategyType in homebridge deployment

* Update Chart.yaml

* Update values.yaml

Co-authored-by: Jeff Billimek <jeff@billimek.com>
This commit is contained in:
Holden Omans 2020-11-11 08:39:24 -05:00 committed by GitHub
parent 8946802950
commit 5f0a25248b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
apiVersion: v2
appVersion: 3.1.0
version: 1.0.1
version: 1.0.2
name: homebridge
description: A lightweight NodeJS server that emulates the iOS HomeKit API
type: application

View File

@ -6,6 +6,8 @@ metadata:
{{- include "homebridge.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.replicaCount }}
strategy:
type: {{ .Values.strategyType }}
selector:
matchLabels:
{{- include "homebridge.selectorLabels" . | nindent 6 }}

View File

@ -12,6 +12,9 @@ imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
# upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate
timezone: "UTC"
puid: 1000
pgid: 1000