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 @@ -15,7 +15,7 @@ type: application
# 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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.17.55
version: 0.18.0

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

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

A Helm chart for Kubernetes

Expand All @@ -24,6 +24,7 @@ A Helm chart for Kubernetes
|-----|------|---------|-------------|
| affinity | object | `{}` | |
| dashboard.extraEnvVars | list | `[]` | |
| dashboard.extraInitContainers | list | `[]` | |
| dashboard.extraVolumeMounts | list | `[]` | |
| dashboard.extraVolumes | list | `[]` | |
| dashboard.image.pullPolicy | string | `"Always"` | |
Expand Down Expand Up @@ -114,6 +115,7 @@ A Helm chart for Kubernetes
| dashboard_service.tlsPort | int | `7443` | |
| dashboard_service.type | string | `"ClusterIP"` | |
| developer_portal.extraEnvVars | list | `[]` | |
| developer_portal.extraInitContainers | list | `[]` | |
| developer_portal.extraVolumeMounts | list | `[]` | |
| developer_portal.extraVolumes | list | `[]` | |
| developer_portal.image.pullPolicy | string | `"Always"` | |
Expand Down Expand Up @@ -159,6 +161,7 @@ A Helm chart for Kubernetes
| developer_portal_service.port | int | `4321` | |
| developer_portal_service.type | string | `"ClusterIP"` | |
| dp_manager.extraEnvVars | list | `[]` | |
| dp_manager.extraInitContainers | list | `[]` | |
| dp_manager.extraVolumeMounts | list | `[]` | |
| dp_manager.extraVolumes | list | `[]` | |
| dp_manager.image.pullPolicy | string | `"Always"` | |
Expand Down
4 changes: 4 additions & 0 deletions charts/api7/templates/dashboard-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ spec:
secret:
secretName: {{ .Values.prometheus.server.existingSecret | quote }}
{{- end }}
{{- if .Values.dashboard.extraInitContainers }}
initContainers:
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.dashboard.extraInitContainers "context" $) | nindent 8 }}
{{- end }}
containers:
- name: dashboard
securityContext:
Expand Down
4 changes: 4 additions & 0 deletions charts/api7/templates/developer-portal-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ spec:
secret:
secretName: {{ .Values.developer_portal.keyCertSecret | quote }}
{{- end }}
{{- if .Values.developer_portal.extraInitContainers }}
initContainers:
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.developer_portal.extraInitContainers "context" $) | nindent 8 }}
{{- end }}
containers:
- name: developer-portal
securityContext:
Expand Down
12 changes: 8 additions & 4 deletions charts/api7/templates/dp-manager-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,12 @@ spec:
secret:
secretName: {{ .Values.prometheus.server.existingSecret | quote }}
{{- end }}
{{- if .Values.dashboard.extraVolumes }}
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.dashboard.extraVolumes "context" $) | nindent 8 }}
{{- if .Values.dp_manager.extraVolumes }}
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.dp_manager.extraVolumes "context" $) | nindent 8 }}
{{- end }}
{{- if .Values.dp_manager.extraInitContainers }}
initContainers:
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.dp_manager.extraInitContainers "context" $) | nindent 8 }}
Comment thread
nic-6443 marked this conversation as resolved.
{{- end }}
containers:
- name: dp-manager
Expand Down Expand Up @@ -85,8 +89,8 @@ spec:
name: prometheus_ssl
readOnly: true
{{- end }}
{{- if .Values.dashboard.extraVolumeMounts }}
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.dashboard.extraVolumeMounts "context" $) | nindent 12 }}
{{- if .Values.dp_manager.extraVolumeMounts }}
{{- include "api7ee3.tplvalues.render" (dict "value" .Values.dp_manager.extraVolumeMounts "context" $) | nindent 12 }}
{{- end }}
resources:
{{- if .Values.dp_manager.resources }}
Expand Down
3 changes: 3 additions & 0 deletions charts/api7/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ dashboard:
extraEnvVars: []
extraVolumes: []
extraVolumeMounts: []
extraInitContainers: []
Comment thread
epmatimbe marked this conversation as resolved.
Comment thread
epmatimbe marked this conversation as resolved.
Comment thread
epmatimbe marked this conversation as resolved.
Comment thread
epmatimbe marked this conversation as resolved.
podLabels: {}
# -- Topology Spread Constraints for pod assignment
# https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
Expand Down Expand Up @@ -70,6 +71,7 @@ dp_manager:
extraEnvVars: []
extraVolumes: []
extraVolumeMounts: []
extraInitContainers: []
podLabels: {}
# -- Topology Spread Constraints for pod assignment
# https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
Expand Down Expand Up @@ -113,6 +115,7 @@ developer_portal:
extraEnvVars: []
extraVolumes: []
extraVolumeMounts: []
extraInitContainers: []
podLabels: {}
# -- Topology Spread Constraints for pod assignment
# https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
Expand Down
Loading