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.29
version: 0.17.30

# 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.29](https://img.shields.io/badge/Version-0.17.29-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.8.16](https://img.shields.io/badge/AppVersion-3.8.16-informational?style=flat-square)
![Version: 0.17.30](https://img.shields.io/badge/Version-0.17.30-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.8.16](https://img.shields.io/badge/AppVersion-3.8.16-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down Expand Up @@ -39,6 +39,7 @@ A Helm chart for Kubernetes
| dashboard.readinessProbe.initialDelaySeconds | int | `10` | |
| dashboard.readinessProbe.periodSeconds | int | `3` | |
| dashboard.replicaCount | int | `1` | |
| dashboard.topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pod assignment https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ The value is evaluated as a template |
| dashboard_configuration.audit.retention_days | int | `60` | |
| dashboard_configuration.console.addr | string | `"http://127.0.0.1:3000"` | |
| dashboard_configuration.consumer_proxy.cache_failure_count | int | `512` | |
Expand Down Expand Up @@ -114,6 +115,7 @@ A Helm chart for Kubernetes
| developer_portal.readinessProbe.initialDelaySeconds | int | `10` | |
| developer_portal.readinessProbe.periodSeconds | int | `3` | |
| developer_portal.replicaCount | int | `1` | |
| developer_portal.topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pod assignment https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ The value is evaluated as a template |
| developer_portal_configuration.database.dsn | string | `"postgres://api7ee:changeme@api7-postgresql:5432/api7ee"` | |
| developer_portal_configuration.database.max_idle_time | string | `"30s"` | |
| developer_portal_configuration.database.max_open_conns | int | `30` | |
Expand Down Expand Up @@ -152,6 +154,7 @@ A Helm chart for Kubernetes
| dp_manager.readinessProbe.initialDelaySeconds | int | `10` | |
| dp_manager.readinessProbe.periodSeconds | int | `3` | |
| dp_manager.replicaCount | int | `1` | |
| dp_manager.topologySpreadConstraints | list | `[]` | Topology Spread Constraints for pod assignment https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/ The value is evaluated as a template |
| dp_manager_configuration.consumer_cache.evict_interval | string | `"5s"` | |
| dp_manager_configuration.consumer_cache.max_ttl | string | `"2h"` | |
| dp_manager_configuration.consumer_cache.size | int | `50000` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/api7/templates/dashboard-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.topologySpreadConstraints }}
{{- with or .Values.dashboard.topologySpreadConstraints .Values.topologySpreadConstraints }}
topologySpreadConstraints:
{{- tpl (. | toYaml) $ | nindent 8 }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/api7/templates/developer-portal-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.topologySpreadConstraints }}
{{- with or .Values.developer_portal.topologySpreadConstraints .Values.topologySpreadConstraints }}
topologySpreadConstraints:
{{- tpl (. | toYaml) $ | nindent 8 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/api7/templates/dp-manager-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.topologySpreadConstraints }}
{{- with or .Values.dp_manager.topologySpreadConstraints .Values.topologySpreadConstraints }}
topologySpreadConstraints:
{{- tpl (. | toYaml) $ | nindent 8 }}
{{- end }}
12 changes: 12 additions & 0 deletions charts/api7/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ dashboard:
extraVolumes: []
extraVolumeMounts: []
podLabels: {}
# -- Topology Spread Constraints for pod assignment
# https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
# The value is evaluated as a template
topologySpreadConstraints: []
livenessProbe:
initialDelaySeconds: 180
periodSeconds: 10
Expand Down Expand Up @@ -67,6 +71,10 @@ dp_manager:
extraVolumes: []
extraVolumeMounts: []
podLabels: {}
# -- Topology Spread Constraints for pod assignment
# https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
# The value is evaluated as a template
topologySpreadConstraints: []
livenessProbe:
initialDelaySeconds: 60
periodSeconds: 3
Expand All @@ -90,6 +98,10 @@ developer_portal:
extraVolumes: []
extraVolumeMounts: []
podLabels: {}
# -- Topology Spread Constraints for pod assignment
# https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/
# The value is evaluated as a template
topologySpreadConstraints: []
livenessProbe:
initialDelaySeconds: 60
periodSeconds: 3
Expand Down
Loading