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:
Alexander Olofsson 2023-09-21 13:35:21 +02:00
parent 4ed5bc5c5f
commit b882eea182
No known key found for this signature in database
GPG key ID: D439C9470CB04C73
4 changed files with 7 additions and 1 deletions

View file

@ -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

View file

@ -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:

View file

@ -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:

View file

@ -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: