Skip to content
Closed
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
2 changes: 1 addition & 1 deletion charts/phpipam/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ name: phpipam
home: https://phpipam.net
sources:
- https://github.com/dreamcommerce/phpipam-helm
version: 1.0.6
version: 1.0.5
type: application
2 changes: 1 addition & 1 deletion charts/phpipam/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# phpipam

![Version: 1.0.6](https://img.shields.io/badge/Version-1.0.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.3](https://img.shields.io/badge/AppVersion-1.7.3-informational?style=flat-square)
![Version: 1.0.5](https://img.shields.io/badge/Version-1.0.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.7.3](https://img.shields.io/badge/AppVersion-1.7.3-informational?style=flat-square)

phpipam is an open-source web IP address management application (IPAM)

Expand Down
10 changes: 7 additions & 3 deletions charts/phpipam/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,17 @@ metadata:
{{ toYaml .Values.ingress.annotations | nindent 4 }}
{{ end }}
spec:
{{- if .Values.ingress.tls }}
tls:
{{- if .Values.ingress.tls }}
{{- toYaml .Values.ingress.tls | nindent 4 }}
{{- else }}
- hosts:
{{- range .Values.ingress.hosts }}
- {{ .host }}
{{- end }}
secretName: "{{ .Release.Name }}-{{ .Chart.Name }}-cert"
{{- end }}
{{- if .Values.ingress.className }}
ingressClassName: {{ .Values.ingress.className }}
{{- end }}
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host }}
Expand Down
2 changes: 0 additions & 2 deletions charts/phpipam/templates/pvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ kind: PersistentVolumeClaim
metadata:
name: {{ .Chart.Name }}-mysql
namespace: {{ .Release.Namespace }}
annotations:
helm.sh/resource-policy: keep
spec:
accessModes:
- ReadWriteOnce
Expand Down