* homebridge -> helm-docs * librespeed -> helmdocs * node-feature-discovery -> helm-docs * oauth2-proxy -> helm-docs * sersock -> helmdocs * speedtest -> helm-docs * unifi -> helm-docs * bump version * uptimerobot -> helm-docs * do not install test ser2sock * Add influxdb dependency * no default value for externalTrafficPolicy Co-authored-by: angelnu <git@angelnucom>
39 lines
668 B
Go Template
39 lines
668 B
Go Template
{{- define "custom.custom.configuration.header" -}}
|
|
## Custom configuration
|
|
{{- end -}}
|
|
|
|
{{- define "custom.custom.configuration" -}}
|
|
{{ template "custom.custom.configuration.header" . }}
|
|
|
|
### SSL Configuration
|
|
|
|
See: [SSL Configuration](https://pusher.github.io/oauth2_proxy/tls-configuration).
|
|
Use ```values.yaml``` like:
|
|
|
|
```yaml
|
|
...
|
|
extraArgs:
|
|
tls-cert: /path/to/cert.pem
|
|
tls-key: /path/to/cert.key
|
|
|
|
extraVolumes:
|
|
- name: ssl-cert
|
|
secret:
|
|
secretName: my-ssl-secret
|
|
|
|
extraVolumeMounts:
|
|
- mountPath: /path/to/
|
|
name: ssl-cert
|
|
...
|
|
```
|
|
|
|
With a secret called `my-ssl-secret`:
|
|
|
|
```yaml
|
|
...
|
|
data:
|
|
cert.pem: AB..==
|
|
cert.key: CD..==
|
|
```
|
|
{{- end -}}
|