mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-03 07:49:03 +00:00
[plex] Added values to choose init container image (#259)
* Added values for the init container image * bumped Chart version Co-authored-by: Richard Cox <richard.cox@centurylink.com>
This commit is contained in:
parent
4c16a658a7
commit
41b52af287
@ -2,7 +2,7 @@ apiVersion: v1
|
|||||||
appVersion: 1.19.1.2645-ccb6eb67e
|
appVersion: 1.19.1.2645-ccb6eb67e
|
||||||
description: Plex Media Server
|
description: Plex Media Server
|
||||||
name: plex
|
name: plex
|
||||||
version: 1.3.0
|
version: 1.3.1
|
||||||
keywords:
|
keywords:
|
||||||
- plex
|
- plex
|
||||||
home: https://plex.tv/
|
home: https://plex.tv/
|
||||||
|
@ -40,7 +40,7 @@ spec:
|
|||||||
# This is ugly, but it does work to create a pks file that will work with PLEX from the tls.crt and tls.key that cert-manager normally creates
|
# This is ugly, but it does work to create a pks file that will work with PLEX from the tls.crt and tls.key that cert-manager normally creates
|
||||||
{{- if .Values.certificate.pkcsMangler.enabled }}
|
{{- if .Values.certificate.pkcsMangler.enabled }}
|
||||||
- name: pkcsmangler-init-container
|
- name: pkcsmangler-init-container
|
||||||
image: tlsprint/openssl:1.1.1f
|
image: "{{ .Values.certificate.pkcsMangler.image.repository }}:{{ .Values.certificate.pkcsMangler.image.tag }}"
|
||||||
imagePullPolicy: Always
|
imagePullPolicy: Always
|
||||||
command: ["/bin/sh"]
|
command: ["/bin/sh"]
|
||||||
args: ["-c", "openssl pkcs12 -export -passout pass:$(PKCSMANGLER_PFXPASSWORD) -out /shared/cert.pfx -inkey {{ .Values.certificate.pkcsMangler.certificateSecret.volume.mountPath }}/{{ .Values.certificate.pkcsMangler.certificateSecret.keyName }} -in {{ .Values.certificate.pkcsMangler.certificateSecret.volume.mountPath }}/{{ .Values.certificate.pkcsMangler.certificateSecret.crtName }}; chmod 0444 /shared/cert.pfx"]
|
args: ["-c", "openssl pkcs12 -export -passout pass:$(PKCSMANGLER_PFXPASSWORD) -out /shared/cert.pfx -inkey {{ .Values.certificate.pkcsMangler.certificateSecret.volume.mountPath }}/{{ .Values.certificate.pkcsMangler.certificateSecret.keyName }} -in {{ .Values.certificate.pkcsMangler.certificateSecret.volume.mountPath }}/{{ .Values.certificate.pkcsMangler.certificateSecret.crtName }}; chmod 0444 /shared/cert.pfx"]
|
||||||
|
@ -215,6 +215,10 @@ certificate:
|
|||||||
# the location specified in pfxInContainerPath.
|
# the location specified in pfxInContainerPath.
|
||||||
pkcsMangler:
|
pkcsMangler:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
# The Image to use for pkcsMangler
|
||||||
|
image:
|
||||||
|
repository: tlsprint/openssl
|
||||||
|
tag: 1.1.1f
|
||||||
configmap:
|
configmap:
|
||||||
labels: {}
|
labels: {}
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
Loading…
Reference in New Issue
Block a user