mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-12 10:55:46 +02:00
Helm chart updates (v0.1.1, init command override, TLS configuration, CRs for ServiceMonitor and PrometheusRule objects) (#105)
* helm-chart: add serviceMonitor * helm-chart: implement tls * helm-chart: add prometheusrule * helm-chart: add parameter to override the container's command Sample values: command: cmd: - '/bin/sh' - '-c' - 'ulimit -l unlimited && dragonfly' securityContext: privileged: true * helm-chart: bump chart appVersion to v0.1.1 and remove hardcoded latest image.tag
This commit is contained in:
parent
ef20178b76
commit
8297c4635d
9 changed files with 226 additions and 8 deletions
|
@ -15,10 +15,10 @@ type: application
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.1.0
|
version: 0.1.1
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
# It is recommended to use it with quotes.
|
# It is recommended to use it with quotes.
|
||||||
appVersion: "v0.1.0"
|
appVersion: "v0.1.1"
|
||||||
|
|
|
@ -9,6 +9,7 @@ A Helm chart for Kubernetes
|
||||||
| Key | Type | Default | Description |
|
| Key | Type | Default | Description |
|
||||||
|-----|------|---------|-------------|
|
|-----|------|---------|-------------|
|
||||||
| affinity | object | `{}` | Affinity for pod assignment |
|
| affinity | object | `{}` | Affinity for pod assignment |
|
||||||
|
| command.set | list | `[]` | Allow overriding the container's command |
|
||||||
| extraArgs | list | `[]` | Extra arguments to pass to the dragonfly binary |
|
| extraArgs | list | `[]` | Extra arguments to pass to the dragonfly binary |
|
||||||
| extraVolumeMounts | list | `[]` | Extra volume mounts corresponding to the volumes mounted above |
|
| extraVolumeMounts | list | `[]` | Extra volume mounts corresponding to the volumes mounted above |
|
||||||
| extraVolumes | list | `[]` | Extra volumes to mount into the pods |
|
| extraVolumes | list | `[]` | Extra volumes to mount into the pods |
|
||||||
|
@ -22,18 +23,31 @@ A Helm chart for Kubernetes
|
||||||
| nodeSelector | object | `{}` | Node labels for pod assignment |
|
| nodeSelector | object | `{}` | Node labels for pod assignment |
|
||||||
| podAnnotations | object | `{}` | Annotations for pods |
|
| podAnnotations | object | `{}` | Annotations for pods |
|
||||||
| podSecurityContext | object | `{}` | Set securityContext for pod itself |
|
| podSecurityContext | object | `{}` | Set securityContext for pod itself |
|
||||||
|
| prometheusRule.enabled | bool | `false` | Deploy a PrometheusRule |
|
||||||
|
| prometheusRule.spec | list | `[]` | PrometheusRule.Spec https://awesome-prometheus-alerts.grep.to/rules |
|
||||||
| replicaCount | int | `1` | Number of replicas to deploy |
|
| replicaCount | int | `1` | Number of replicas to deploy |
|
||||||
| resources.limits | object | `{}` | The resource limits for the containers |
|
| resources.limits | object | `{}` | The resource limits for the containers |
|
||||||
| resources.requests | object | `{}` | The requested resources for the containers |
|
| resources.requests | object | `{}` | The requested resources for the containers |
|
||||||
| securityContext | object | `{}` | Set securityContext for containers |
|
| securityContext | object | `{}` | Set securityContext for containers |
|
||||||
|
| service.metrics.portName | string | `"metrics"` | name for the metrics port |
|
||||||
|
| service.metrics.serviceType | string | `"ClusterIP"` | serviceType for the metrics service |
|
||||||
| service.port | int | `6379` | Dragonfly service port |
|
| service.port | int | `6379` | Dragonfly service port |
|
||||||
| service.type | string | `"ClusterIP"` | Service type to provision. Can be NodePort, ClusterIP or LoadBalancer |
|
| service.type | string | `"ClusterIP"` | Service type to provision. Can be NodePort, ClusterIP or LoadBalancer |
|
||||||
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
|
| serviceAccount.annotations | object | `{}` | Annotations to add to the service account |
|
||||||
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
|
| serviceAccount.create | bool | `true` | Specifies whether a service account should be created |
|
||||||
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
|
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
|
||||||
|
| serviceMonitor.enabled | bool | `false` | If true, a ServiceMonitor CRD is created for a prometheus operator |
|
||||||
|
| serviceMonitor.interval | string | `"10s"` | scrape interval |
|
||||||
|
| serviceMonitor.labels | object | `{}` | additional labels to apply to the metrics |
|
||||||
|
| serviceMonitor.namespace | string | `""` | namespace in which to deploy the ServiceMonitor CR. defaults to the application namespace |
|
||||||
|
| serviceMonitor.scrapeTimeout | string | `"10s"` | scrape timeout |
|
||||||
| storage.enabled | bool | `false` | If /data should persist. This will provision a StatefulSet instead. |
|
| storage.enabled | bool | `false` | If /data should persist. This will provision a StatefulSet instead. |
|
||||||
| storage.requests | string | `"128Mi"` | Volume size to request for the PVC |
|
| storage.requests | string | `"128Mi"` | Volume size to request for the PVC |
|
||||||
| storage.storageClassName | string | `""` | Global StorageClass for Persistent Volume(s) |
|
| storage.storageClassName | string | `""` | Global StorageClass for Persistent Volume(s) |
|
||||||
|
| tls.cert | string | `""` | TLS certificate |
|
||||||
|
| tls.enabled | bool | `false` | enable TLS |
|
||||||
|
| tls.existing_secret | string | `""` | use TLS certificates from existing secret |
|
||||||
|
| tls.key | string | `""` | TLS private key |
|
||||||
| tolerations | list | `[]` | Tolerations for pod assignment |
|
| tolerations | list | `[]` | Tolerations for pod assignment |
|
||||||
|
|
||||||
----------------------------------------------
|
----------------------------------------------
|
||||||
|
|
|
@ -12,8 +12,13 @@ spec:
|
||||||
{{- include "dragonfly.selectorLabels" . | nindent 6 }}
|
{{- include "dragonfly.selectorLabels" . | nindent 6 }}
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
{{- with .Values.podAnnotations }}
|
|
||||||
annotations:
|
annotations:
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
{{- if not .Values.tls.existing_secret }}
|
||||||
|
checksum/tls-secret: {{ include (print $.Template.BasePath "/tls-secret.yaml") . | sha256sum }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.podAnnotations }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
|
@ -55,15 +60,28 @@ spec:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /
|
path: /
|
||||||
port: dragonfly
|
port: dragonfly
|
||||||
|
{{- if .Values.command.cmd }}
|
||||||
|
command:
|
||||||
|
{{ toYaml .Values.command.cmd | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
args:
|
args:
|
||||||
- "--alsologtostderr"
|
- "--alsologtostderr"
|
||||||
{{- if .Values.extraArgs }}
|
{{- if .Values.extraArgs }}
|
||||||
{{- toYaml .Values.extraArgs | nindent 12 }}
|
{{- toYaml .Values.extraArgs | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
- "--tls"
|
||||||
|
- "--tls_client_cert_file=/etc/dragonfly/tls/tls.crt"
|
||||||
|
- "--tls_client_key_file=/etc/dragonfly/tls/tls.key"
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
{{- if .Values.extraVolumeMounts }}
|
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
- mountPath: /etc/dragonfly/tls
|
||||||
|
name: tls
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.extraVolumeMounts }}
|
||||||
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
|
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
|
@ -78,8 +96,20 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.extraVolumes }}
|
|
||||||
volumes:
|
volumes:
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
{{- if .Values.tls.existing_secret }}
|
||||||
|
- name: tls
|
||||||
|
secret:
|
||||||
|
secretName: {{ .Values.tls.existing_secret }}
|
||||||
|
{{- else }}
|
||||||
|
- name: tls
|
||||||
|
secret:
|
||||||
|
secretName: {{ include "dragonfly.fullname" . }}-tls
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.extraVolumes }}
|
||||||
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
18
contrib/charts/dragonfly/templates/metrics-service.yaml
Normal file
18
contrib/charts/dragonfly/templates/metrics-service.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{{- if .Values.serviceMonitor.enabled }}
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: {{ include "dragonfly.fullname" . }}-metrics
|
||||||
|
labels:
|
||||||
|
{{- include "dragonfly.labels" . | nindent 4 }}
|
||||||
|
type: metrics
|
||||||
|
spec:
|
||||||
|
type: {{ .Values.service.metrics.serviceType }}
|
||||||
|
ports:
|
||||||
|
- name: {{ .Values.service.metrics.portName }}
|
||||||
|
port: {{ .Values.service.port }}
|
||||||
|
targetPort: {{ .Values.service.port }}
|
||||||
|
protocol: TCP
|
||||||
|
selector:
|
||||||
|
{{- include "dragonfly.selectorLabels" . | nindent 4 }}
|
||||||
|
{{- end }}
|
20
contrib/charts/dragonfly/templates/prometheusrule.yaml
Normal file
20
contrib/charts/dragonfly/templates/prometheusrule.yaml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{{- if and ( .Capabilities.APIVersions.Has "monitoring.coreos.com/v1" ) .Values.serviceMonitor.enabled .Values.prometheusRule.enabled }}
|
||||||
|
apiVersion: monitoring.coreos.com/v1
|
||||||
|
kind: PrometheusRule
|
||||||
|
metadata:
|
||||||
|
name: {{ template "dragonfly.fullname" . }}-metrics
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
labels:
|
||||||
|
chart: {{ template "dragonfly.chart" . }}
|
||||||
|
app: {{ template "dragonfly.name" . }}
|
||||||
|
release: "{{ .Release.Name }}"
|
||||||
|
heritage: "{{ .Release.Service }}"
|
||||||
|
{{- if .Values.serviceMonitor.labels }}
|
||||||
|
{{- toYaml .Values.serviceMonitor.labels | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
spec:
|
||||||
|
groups:
|
||||||
|
- name: {{ template "dragonfly.name" . }}
|
||||||
|
rules:
|
||||||
|
{{- toYaml .Values.prometheusRule.spec | nindent 4 }}
|
||||||
|
{{- end }}
|
41
contrib/charts/dragonfly/templates/servicemonitor.yaml
Normal file
41
contrib/charts/dragonfly/templates/servicemonitor.yaml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{{- if and ( .Capabilities.APIVersions.Has "monitoring.coreos.com/v1" ) .Values.serviceMonitor.enabled }}
|
||||||
|
apiVersion: monitoring.coreos.com/v1
|
||||||
|
kind: ServiceMonitor
|
||||||
|
metadata:
|
||||||
|
name: {{ template "dragonfly.fullname" . }}-metrics
|
||||||
|
{{- if .Values.serviceMonitor.namespace }}
|
||||||
|
namespace: {{ .Values.serviceMonitor.namespace }}
|
||||||
|
{{- end }}
|
||||||
|
labels:
|
||||||
|
chart: {{ template "dragonfly.chart" . }}
|
||||||
|
app: {{ template "dragonfly.name" . }}
|
||||||
|
release: "{{ .Release.Name }}"
|
||||||
|
heritage: "{{ .Release.Service }}"
|
||||||
|
{{- if .Values.serviceMonitor.labels }}
|
||||||
|
{{- toYaml .Values.serviceMonitor.labels | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
|
spec:
|
||||||
|
endpoints:
|
||||||
|
- interval: {{ .Values.serviceMonitor.interval }}
|
||||||
|
{{- if .Values.serviceMonitor.scrapeTimeout }}
|
||||||
|
scrapeTimeout: {{ .Values.serviceMonitor.scrapeTimeout }}
|
||||||
|
{{- end }}
|
||||||
|
honorLabels: true
|
||||||
|
port: {{ default "metrics" .Values.service.metrics.portName }}
|
||||||
|
path: /metrics
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
scheme: https
|
||||||
|
tls:
|
||||||
|
insecureSkipVerify: true
|
||||||
|
{{- else }}
|
||||||
|
scheme: http
|
||||||
|
{{- end }}
|
||||||
|
jobLabel: "{{ .Release.Name }}"
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
{{- include "dragonfly.selectorLabels" . | nindent 6 }}
|
||||||
|
type: metrics
|
||||||
|
namespaceSelector:
|
||||||
|
matchNames:
|
||||||
|
- {{ .Release.Namespace }}
|
||||||
|
{{- end }}
|
|
@ -13,8 +13,13 @@ spec:
|
||||||
{{- include "dragonfly.selectorLabels" . | nindent 6 }}
|
{{- include "dragonfly.selectorLabels" . | nindent 6 }}
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
{{- with .Values.podAnnotations }}
|
|
||||||
annotations:
|
annotations:
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
{{- if not .Values.tls.existing_secret }}
|
||||||
|
checksum/tls-secret: {{ include (print $.Template.BasePath "/tls-secret.yaml") . | sha256sum }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.podAnnotations }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
|
@ -58,16 +63,29 @@ spec:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /
|
path: /
|
||||||
port: dragonfly
|
port: dragonfly
|
||||||
|
{{- if .Values.command.cmd }}
|
||||||
|
command:
|
||||||
|
{{ toYaml .Values.command.cmd | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
args:
|
args:
|
||||||
- "--alsologtostderr"
|
- "--alsologtostderr"
|
||||||
{{- if .Values.extraArgs }}
|
{{- if .Values.extraArgs }}
|
||||||
{{- toYaml .Values.extraArgs | nindent 12 }}
|
{{- toYaml .Values.extraArgs | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
- "--tls"
|
||||||
|
- "--tls_client_cert_file=/etc/dragonfly/tls/tls.crt"
|
||||||
|
- "--tls_client_key_file=/etc/dragonfly/tls/tls.key"
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /data
|
- mountPath: /data
|
||||||
name: "{{ .Release.Name }}-data"
|
name: "{{ .Release.Name }}-data"
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
- mountPath: /etc/dragonfly/tls
|
||||||
|
name: tls
|
||||||
|
{{- end }}
|
||||||
{{- if .Values.extraVolumeMounts }}
|
{{- if .Values.extraVolumeMounts }}
|
||||||
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
|
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -83,8 +101,19 @@ spec:
|
||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.extraVolumes }}
|
|
||||||
volumes:
|
volumes:
|
||||||
|
{{- if .Values.tls.enabled }}
|
||||||
|
{{- if .Values.tls.existing_secret }}
|
||||||
|
- name: tls
|
||||||
|
secret:
|
||||||
|
secretName: {{ .Values.tls.existing_secret }}
|
||||||
|
{{- else }}
|
||||||
|
- name: tls
|
||||||
|
secret:
|
||||||
|
secretName: {{ include "dragonfly.fullname" . }}-tls
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.extraVolumes }}
|
||||||
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
{{- toYaml .Values.extraVolumes | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
|
|
14
contrib/charts/dragonfly/templates/tls-secret.yaml
Normal file
14
contrib/charts/dragonfly/templates/tls-secret.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{{- if and .Values.tls.enabled .Values.tls.cert .Values.tls.key }}
|
||||||
|
{{- if not .Values.tls.existing_secret }}
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Secret
|
||||||
|
metadata:
|
||||||
|
name: {{ include "dragonfly.fullname" . }}-tls
|
||||||
|
labels:
|
||||||
|
{{- include "dragonfly.labels" . | nindent 4 }}
|
||||||
|
type: kubernetes.io/tls
|
||||||
|
data:
|
||||||
|
tls.crt: {{ default "" .Values.tls.cert | b64enc | quote }}
|
||||||
|
tls.key: {{ default "" .Values.tls.key | b64enc | quote }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
|
@ -11,7 +11,7 @@ image:
|
||||||
# -- Dragonfly image pull policy
|
# -- Dragonfly image pull policy
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# -- Overrides the image tag whose default is the chart appVersion.
|
# -- Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: "latest" # TODO: remove as soon as there's a properly tagged image available
|
tag: ""
|
||||||
|
|
||||||
# -- Container Registry Secret names in an array
|
# -- Container Registry Secret names in an array
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
@ -52,6 +52,30 @@ service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
# -- Dragonfly service port
|
# -- Dragonfly service port
|
||||||
port: 6379
|
port: 6379
|
||||||
|
metrics:
|
||||||
|
# -- name for the metrics port
|
||||||
|
portName: metrics
|
||||||
|
# -- serviceType for the metrics service
|
||||||
|
serviceType: ClusterIP
|
||||||
|
|
||||||
|
serviceMonitor:
|
||||||
|
# -- If true, a ServiceMonitor CRD is created for a prometheus operator
|
||||||
|
enabled: false
|
||||||
|
# -- namespace in which to deploy the ServiceMonitor CR. defaults to the application namespace
|
||||||
|
namespace: ""
|
||||||
|
# -- additional labels to apply to the metrics
|
||||||
|
labels: {}
|
||||||
|
# -- scrape interval
|
||||||
|
interval: 10s
|
||||||
|
# -- scrape timeout
|
||||||
|
scrapeTimeout: 10s
|
||||||
|
|
||||||
|
prometheusRule:
|
||||||
|
# -- Deploy a PrometheusRule
|
||||||
|
enabled: false
|
||||||
|
# -- PrometheusRule.Spec
|
||||||
|
# https://awesome-prometheus-alerts.grep.to/rules
|
||||||
|
spec: []
|
||||||
|
|
||||||
storage:
|
storage:
|
||||||
# -- If /data should persist. This will provision a StatefulSet instead.
|
# -- If /data should persist. This will provision a StatefulSet instead.
|
||||||
|
@ -61,6 +85,34 @@ storage:
|
||||||
# -- Volume size to request for the PVC
|
# -- Volume size to request for the PVC
|
||||||
requests: 128Mi
|
requests: 128Mi
|
||||||
|
|
||||||
|
tls:
|
||||||
|
# -- enable TLS
|
||||||
|
enabled: false
|
||||||
|
# -- use TLS certificates from existing secret
|
||||||
|
existing_secret: ""
|
||||||
|
# -- TLS certificate
|
||||||
|
cert: ""
|
||||||
|
# cert: |
|
||||||
|
# -----BEGIN CERTIFICATE-----
|
||||||
|
# MIIDazCCAlOgAwIBAgIUfV3ygaaVW3+yzK5Dq6Aw6TsZ494wDQYJKoZIhvcNAQEL
|
||||||
|
# ...
|
||||||
|
# BQAwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgMClNvbWUtU3RhdGUxITAfBgNVBAoM
|
||||||
|
# zJAL4hNw4Tr6E52fqdmX
|
||||||
|
# -----END CERTIFICATE-----
|
||||||
|
# -- TLS private key
|
||||||
|
key: ""
|
||||||
|
# key: |
|
||||||
|
# -----BEGIN RSA PRIVATE KEY-----
|
||||||
|
# MIIEpAIBAAKCAQEAxeD5iQGQpCUlksFvjzzAxPTw6DMJd3MpifV+HoBY4LiTyDer
|
||||||
|
# ...
|
||||||
|
# HLunol88AeTOcKfD6hBYGvcRfu5NV29jJxZCOBfbFQXjnNlnrhRCag==
|
||||||
|
# -----END RSA PRIVATE KEY-----
|
||||||
|
|
||||||
|
|
||||||
|
command:
|
||||||
|
# -- Allow overriding the container's command
|
||||||
|
set: []
|
||||||
|
|
||||||
# -- Extra arguments to pass to the dragonfly binary
|
# -- Extra arguments to pass to the dragonfly binary
|
||||||
extraArgs: []
|
extraArgs: []
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue