Keramblock develop (#3880)

* Fixes for helm chart

* added changelog note

Co-authored-by: Michael Kirpichev <m.kirpichev@haut.ai>
main
Andrey Zhavoronkov 4 years ago committed by GitHub
parent e77499181f
commit 1ea23e312a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -46,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Migration of `dataset_repo` application (<https://github.com/openvinotoolkit/cvat/pull/3827>) - Migration of `dataset_repo` application (<https://github.com/openvinotoolkit/cvat/pull/3827>)
- Helm settings for external psql database were unused by backend (<https://github.com/openvinotoolkit/cvat/pull/3779>) - Helm settings for external psql database were unused by backend (<https://github.com/openvinotoolkit/cvat/pull/3779>)
- Updated WSL setup for development (<https://github.com/openvinotoolkit/cvat/pull/3828>) - Updated WSL setup for development (<https://github.com/openvinotoolkit/cvat/pull/3828>)
- Helm chart config (<https://github.com/openvinotoolkit/cvat/pull/3784>)
### Security ### Security

@ -141,10 +141,14 @@ spec:
{{- with .Values.cvat.backend.additionalVolumeMounts }} {{- with .Values.cvat.backend.additionalVolumeMounts }}
{{- toYaml . | nindent 10 }} {{- toYaml . | nindent 10 }}
{{- end }} {{- end }}
{{- with .Values.cvat.frontend.affinity }} {{- with .Values.cvat.backend.affinity }}
affinity: affinity:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- with .Values.cvat.backend.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes: volumes:
{{- if .Values.cvat.backend.defaultStorage.enabled }} {{- if .Values.cvat.backend.defaultStorage.enabled }}
- name: cvat-backend-data - name: cvat-backend-data

@ -51,10 +51,14 @@ spec:
volumes: volumes:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- with .Values.cvat.frontend.affinity }} {{- with .Values.cvat.frontend.affinity }}
affinity: affinity:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- with .Values.cvat.frontend.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.imagePullSecrets }} {{- with .Values.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}

@ -18,6 +18,7 @@ cvat:
# test.io/test: test # test.io/test: test
resources: {} resources: {}
affinity: {} affinity: {}
tolerations: []
# nodeAffinity: # nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution: # requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms: # nodeSelectorTerms:
@ -65,6 +66,7 @@ cvat:
# test.io/test: test # test.io/test: test
resources: {} resources: {}
affinity: {} affinity: {}
tolerations: []
# nodeAffinity: # nodeAffinity:
# requiredDuringSchedulingIgnoredDuringExecution: # requiredDuringSchedulingIgnoredDuringExecution:
# nodeSelectorTerms: # nodeSelectorTerms:

Loading…
Cancel
Save