Skip to content
Merged
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/api7/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: application
# Versions are expected to follow Semantic Versioning (https://semver.org/)
# major.minor mirrors the API7 EE release line (3.10.x), patch is this chart's
# own counter on that line and is decoupled from the app patch (see appVersion).
version: 3.10.3
version: 3.10.4

# 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
Expand Down
3 changes: 2 additions & 1 deletion charts/api7/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# api7ee3

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

A Helm chart for Kubernetes

Expand Down Expand Up @@ -235,6 +235,7 @@ A Helm chart for Kubernetes
| dp_manager_service.tlsPort | int | `7943` | |
| dp_manager_service.type | string | `"ClusterIP"` | |
| file_server.enabled | bool | `false` | |
| file_server.extraEnvVars | list | `[]` | |
| file_server.image.pullPolicy | string | `"Always"` | |
| file_server.image.repository | string | `"api7/api7-ee-file-server"` | |
| file_server.image.tag | string | `"v3.10.4"` | |
Expand Down
4 changes: 4 additions & 0 deletions charts/api7/templates/file-server-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ spec:
initialDelaySeconds: {{ .Values.file_server.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.file_server.readinessProbe.periodSeconds }}
failureThreshold: {{ .Values.file_server.readinessProbe.failureThreshold }}
{{- if .Values.file_server.extraEnvVars }}
env:
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.file_server.extraEnvVars "context" $) | nindent 12 }}
{{- end }}
volumeMounts:
- name: config
mountPath: /usr/local/api7/conf
Expand Down
2 changes: 2 additions & 0 deletions charts/api7/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ file_server:
repository: api7/api7-ee-file-server
pullPolicy: Always
tag: "v3.10.4"

extraEnvVars: []
livenessProbe:
initialDelaySeconds: 60
periodSeconds: 3
Expand Down
Loading