netbox: Release 5.5.1 - fix postgres cert issues
Due to changes in psycopg2 and nginx-unit, SSL connection to postgres were failing as they weren't able to load the fallback cert path anymore, this change causes it to look up certs under /tmp instead and properly failover
This commit is contained in:
parent
4ed5bc5c5f
commit
b882eea182
4 changed files with 7 additions and 1 deletions
|
@ -10,7 +10,7 @@ icon: https://raw.githubusercontent.com/digitalocean/netbox/develop/netbox/proje
|
|||
appVersion: 3.6.2
|
||||
|
||||
type: application
|
||||
version: 5.5.0
|
||||
version: 5.5.1
|
||||
maintainers:
|
||||
- name: Alexander Olofsson
|
||||
email: ace@haxalot.com
|
||||
|
|
|
@ -33,6 +33,8 @@ spec:
|
|||
image: "{{ .Values.image.repository }}:{{ include "netbox.imageTag" . }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
env:
|
||||
- name: HOME
|
||||
value: /tmp
|
||||
{{- if and (or .Values.redis.auth.existingSecret .Values.redis.enabled) (not .Values.redis.auth.password) }}
|
||||
- name: REDIS_PASSWORD
|
||||
valueFrom:
|
||||
|
|
|
@ -35,6 +35,8 @@ spec:
|
|||
image: "{{ .Values.image.repository }}:{{ include "netbox.imageTag" . }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
env:
|
||||
- name: HOME
|
||||
value: /tmp
|
||||
{{- if and (or .Values.redis.auth.existingSecret .Values.redis.enabled) (not .Values.redis.auth.password) }}
|
||||
- name: REDIS_PASSWORD
|
||||
valueFrom:
|
||||
|
|
|
@ -39,6 +39,8 @@ spec:
|
|||
image: "{{ .Values.image.repository }}:{{ include "netbox.imageTag" . }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
env:
|
||||
- name: HOME
|
||||
value: /tmp
|
||||
{{- if and (or .Values.redis.auth.existingSecret .Values.redis.enabled) (not .Values.redis.auth.password) }}
|
||||
- name: REDIS_PASSWORD
|
||||
valueFrom:
|
||||
|
|
Loading…
Reference in a new issue