-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Twins importer (#360) * Twins importer * Twins importer add dgctlStorage settings * Twins importer fix chart * fix chart * small fix * add logs * [keys-api] up keys-backend. Support truck, map-matching api keys (#386) * Update citylens to 1.4.0 (#388) * Update citylens to 1.4.0 * bump to 1.4.1 * Feature: add codeowners file (#383) * [license] Reworked securityContext for license type 2 (#387) * [PRO-4361] Обновление pro-api до версии 1.1.79 (#382) * [PRO-4361] Обновление pro-api до версии 1.1.74 * PRO-4361: update to 1.1.77 * PRO-4371: update to 1.1.78 * PRO-4361: update to 1.1.79 * PRO-4176: add auth scopes (#365) * PRO-4176: add auth scopes * PRO-4176: update pro-ui version * PRO-4176: update app version * PRO-4176: update to 1.7.5 * navi-castle: bugfix (#393) - scheduled tasks without PV - configuration parameters mistaken * navi-restrictions-api 1.0.1 release (#392) * navi-restrictions-api 1.0.1 release * readme upd * [DEVOPS-982] navi-front: update default locations (#389) * [DEVOPS-982] navi-front: Add pedestrian location (#396) * [platform] Upgrade version (#381) * PRO-3766: update platform to 0.8.1 * Fix Breaking-Changes (#401) * generic-chart added (#398) * PRO-3609: upgrade pro ui to 1.9.0 (#399) * navi-back: upstream update 7.15.2.4 (#402) * [PRO-4517] обновил хелм-чарт pro-api в onprem до версии 1.5.0 (#394) * PRO-0: upgrade PRO API to 1.5.1 (#404) * Feature: add PR template (#410) * PRO-4774: upgraded PRO API to 1.6.0 (#407) * [PRO-4635] pro-ui, версия 2.1.1 (#405) * Citylens 1.6.0 (#406) * Update citylens to 1.5.0 * Bump appversion * Fix citylens-api configmap * Fix license server url template * Fix review notes * Update headerLinks * Add camcom to headerLinks * Fix page name in configmap * Bump to 1.5.1 * Bump to 1.6.0 * Update breaking changes & bump app version in chart * [navi-router] rename router.keyManagementServices to keys (#409) * [navi-router] Remove trailing dots in param descriptions * [navi-router] Rename router.keyManagementService -> keys * [navi-router] Rename router.castleHost -> router.castleUrl * release-1.20.0 * add breacking-changes to template
- Loading branch information
1 parent
52aef0b
commit ddb06df
Showing
61 changed files
with
1,095 additions
and
385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Changelog: | ||
|
||
- `Some changes` (A description of the changes proposed in the pull request.) | ||
|
||
Issues: | ||
|
||
- `Issue-123` (Link to related issue) | ||
|
||
Steps for check: | ||
|
||
- `Step 1` | ||
- `...` | ||
- `Step n-1` | ||
- `Step n` | ||
|
||
[Breaking-Changes](../Breaking-Changes.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
charts/citylens/templates/worker/deployment-reporter-pro-tracks.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: {{ include "citylens.reporter-pro-tracks.name" . }} | ||
{{- if .Values.worker.reporterProTracks.annotations }} | ||
annotations: | ||
{{- toYaml .Values.worker.reporterProTracks.annotations | nindent 4 }} | ||
{{- end }} | ||
labels: | ||
{{- include "citylens.reporter-pro-tracks.labels" . | nindent 4 }} | ||
{{- if .Values.worker.reporterProTracks.labels }} | ||
{{- toYaml .Values.worker.reporterProTracks.labels | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
replicas: {{ .Values.worker.reporterProTracks.replicas }} | ||
selector: | ||
matchLabels: | ||
{{- include "citylens.reporter-pro-tracks.selectorLabels" . | nindent 6 }} | ||
strategy: | ||
type: RollingUpdate | ||
rollingUpdate: | ||
maxSurge: 1 | ||
maxUnavailable: 0 | ||
template: | ||
metadata: | ||
annotations: | ||
checksum/config: {{ include (print $.Template.BasePath "/web/configmap.yaml") . | sha256sum }} | ||
{{- with .Values.worker.reporterProTracks.podAnnotations }} | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
labels: | ||
{{- include "citylens.reporter-pro-tracks.labels" . | nindent 8 }} | ||
spec: | ||
containers: | ||
- name: {{ include "citylens.reporter-pro-tracks.name" . }} | ||
image: {{ required "A valid .Values.dgctlDockerRegistry entry required" .Values.dgctlDockerRegistry }}/{{ .Values.web.image.repository }}:{{ .Values.web.image.tag }} | ||
imagePullPolicy: {{ .Values.web.image.pullPolicy }} | ||
command: [ "/bin/sh", "-c" ] | ||
args: [ "flask reporter run-pro-tracks" ] | ||
env: | ||
- name: CONFIG_PATH | ||
value: /opt/worker/config/dashboard_config.yaml | ||
resources: | ||
{{- toYaml .Values.worker.resources | nindent 12 }} | ||
volumeMounts: | ||
- name: config-volume | ||
mountPath: /opt/worker/config | ||
volumes: | ||
- name: config-volume | ||
configMap: | ||
name: {{ include "citylens.web.name" . }}-configmap | ||
{{- with .Values.worker.reporterProTracks.nodeSelector }} | ||
nodeSelector: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.worker.reporterProTracks.affinity }} | ||
affinity: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.worker.reporterProTracks.tolerations }} | ||
tolerations: | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} |
Oops, something went wrong.