mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-02-02 23:39: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
|
||||
description: Plex Media Server
|
||||
name: plex
|
||||
version: 1.3.0
|
||||
version: 1.3.1
|
||||
keywords:
|
||||
- plex
|
||||
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
|
||||
{{- if .Values.certificate.pkcsMangler.enabled }}
|
||||
- name: pkcsmangler-init-container
|
||||
image: tlsprint/openssl:1.1.1f
|
||||
image: "{{ .Values.certificate.pkcsMangler.image.repository }}:{{ .Values.certificate.pkcsMangler.image.tag }}"
|
||||
imagePullPolicy: Always
|
||||
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"]
|
||||
|
@ -215,6 +215,10 @@ certificate:
|
||||
# the location specified in pfxInContainerPath.
|
||||
pkcsMangler:
|
||||
enabled: false
|
||||
# The Image to use for pkcsMangler
|
||||
image:
|
||||
repository: tlsprint/openssl
|
||||
tag: 1.1.1f
|
||||
configmap:
|
||||
labels: {}
|
||||
annotations: {}
|
||||
|
Loading…
Reference in New Issue
Block a user