netbox: Update to appVersion 2.7.12
This commit is contained in:
parent
5de7d7a7f3
commit
42b94b3aff
5 changed files with 12 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
appVersion: "2.7.11"
|
||||
appVersion: "2.7.12"
|
||||
description: An IP address management (IPAM) and data center infrastructure management (DCIM) tool.
|
||||
icon: https://raw.githubusercontent.com/digitalocean/netbox/develop/netbox/project-static/img/netbox.ico
|
||||
name: netbox
|
||||
version: 0.4.6
|
||||
version: 0.4.7
|
||||
|
|
|
@ -34,3 +34,10 @@ Create chart name and version as used by the chart label.
|
|||
{{- define "netbox.chart" -}}
|
||||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/*
|
||||
Get the correct image tag name
|
||||
*/}}
|
||||
{{- define "netbox.imageTag" -}}
|
||||
{{- .Values.image.tag | default (printf "%s-ldap" .Chart.AppVersion) -}}
|
||||
{{- end -}}
|
||||
|
|
|
@ -32,7 +32,7 @@ spec:
|
|||
- python3
|
||||
- /opt/netbox/netbox/manage.py
|
||||
- rqworker
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
image: "{{ .Values.image.repository }}:{{ include "netbox.imageTag" . }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
|
|
|
@ -27,7 +27,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: {{ .Chart.Name }}
|
||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
||||
image: "{{ .Values.image.repository }}:{{ include "netbox.imageTag" . }}"
|
||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
|
|
|
@ -7,7 +7,7 @@ replicaCount: 1
|
|||
|
||||
image:
|
||||
repository: netboxcommunity/netbox
|
||||
tag: v2.7.11-ldap
|
||||
# tag: v2.7.12-ldap
|
||||
pullPolicy: Always
|
||||
|
||||
nameOverride: ""
|
||||
|
|
Loading…
Reference in a new issue