Skip to content
Open
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
4 changes: 4 additions & 0 deletions charts/portkey-app/templates/backend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.backend.deployment.hostAlias }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.backend.deployment.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/portkey-app/templates/clickhouse/stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.clickhouse.statefulSet.hostAlias }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
- name: clickhouse-conf
configMap:
Expand Down
4 changes: 4 additions & 0 deletions charts/portkey-app/templates/dataservice/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.dataservice.deployment.hostAlias }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.dataservice.deployment.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/portkey-app/templates/frontend/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.frontend.deployment.hostAlias }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
{{- with .Values.frontend.deployment.volumes }}
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/portkey-app/templates/gateway/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.gateway.deployment.hostAlias }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.gateway.deployment.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/portkey-app/templates/mysql/stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.mysql.statefulSet.hostAlias }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.mysql.statefulSet.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
Expand Down
4 changes: 4 additions & 0 deletions charts/portkey-app/templates/redis/stateful-set.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.redis.statefulSet.hostAlias }}
hostAliases:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.redis.statefulSet.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
Expand Down
7 changes: 7 additions & 0 deletions charts/portkey-app/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ backend:
affinity: {}
volumes: []
volumeMounts: []
hostAlias: []
service:
type: ClusterIP
port: 8080
Expand Down Expand Up @@ -293,6 +294,7 @@ gateway:
affinity: {}
volumes: []
volumeMounts: []
hostAlias: []
service:
type: ClusterIP
port: 8787
Expand Down Expand Up @@ -374,6 +376,7 @@ dataservice:
affinity: {}
volumes: []
volumeMounts: []
hostAlias: []
service:
type: ClusterIP
port: 8081
Expand Down Expand Up @@ -451,6 +454,7 @@ frontend:
affinity: {}
volumes: []
volumeMounts: []
hostAlias: []
autoscaling:
enabled: false
# If enabled, use the following values to configure the HPA. You can also use your own HPA configuration by not creating an HPA.
Expand Down Expand Up @@ -556,6 +560,7 @@ mysql:
affinity: {}
volumes: []
volumeMounts: []
hostAlias: []
persistence:
enabled: false
size: 2Gi
Expand Down Expand Up @@ -635,6 +640,7 @@ redis:
affinity: {}
volumes: []
volumeMounts: []
hostAlias: []
persistence:
enabled: false
size: 2Gi
Expand Down Expand Up @@ -725,6 +731,7 @@ clickhouse:
volumes:
- name: data
emptyDir: {}
hostAlias: []
# We recommend using a persistent volume and increasing the storage size to something like 50Gi when using in a production environment!
persistence:
enabled: false
Expand Down