Commit aa4980e 1 parent 321ba4f commit aa4980e Copy full SHA for aa4980e
File tree 11 files changed +14
-8
lines changed
11 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 45
45
- name : Deploy to minikube
46
46
run : |
47
47
printf "traefik:\n service:\n externalIPs:\n - $(minikube ip)\n" >> tests/values.test.yaml
48
- find cvat/apps/iam/rules -name "*.rego" -and ! -name '*test*' -exec basename {} \; | tar -czf helm-chart/rules.tar.gz -C cvat/apps/iam/rules/ -T -
49
48
cd helm-chart
50
49
helm dependency update
51
50
cd ..
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
15
15
# This is the chart version. This version number should be incremented each time you make changes
16
16
# to the chart and its templates, including the app version.
17
17
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18
- version : 0.5.1
18
+ version : 0.5.2
19
19
20
20
# This is the version number of the application being deployed. This version number should be
21
21
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 46
46
containers :
47
47
- name : cvat-app-backend-worker-webhooks-container
48
48
image : {{ .Values.cvat.backend.image }}:{{ .Values.cvat.backend.tag }}
49
+ imagePullPolicy : {{ .Values.cvat.backend.imagePullPolicy }}
49
50
{{- with .Values.cvat.backend.worker.webhooks.resources }}
50
51
resources :
51
52
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change 46
46
containers :
47
47
- name : cvat-app-backend-server-container
48
48
image : {{ .Values.cvat.backend.image }}:{{ .Values.cvat.backend.tag }}
49
+ imagePullPolicy : {{ .Values.cvat.backend.imagePullPolicy }}
49
50
{{- with .Values.cvat.backend.server.resources }}
50
51
resources :
51
52
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change 46
46
containers :
47
47
- name : cvat-app-backend-utils-container
48
48
image : {{ .Values.cvat.backend.image }}:{{ .Values.cvat.backend.tag }}
49
- imagePullPolicy : {{ .Values.cvat.backend.imagepullpolicy }}
49
+ imagePullPolicy : {{ .Values.cvat.backend.imagePullPolicy }}
50
50
{{- with .Values.cvat.backend.utils.resources }}
51
51
resources :
52
52
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change 46
46
containers :
47
47
- name : cvat-app-backend-worker-default-container
48
48
image : {{ .Values.cvat.backend.image }}:{{ .Values.cvat.backend.tag }}
49
+ imagePullPolicy : {{ .Values.cvat.backend.imagePullPolicy }}
49
50
{{- with .Values.cvat.backend.worker.default.resources }}
50
51
resources :
51
52
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change 46
46
containers :
47
47
- name : cvat-app-backend-worker-low-container
48
48
image : {{ .Values.cvat.backend.image }}:{{ .Values.cvat.backend.tag }}
49
+ imagePullPolicy : {{ .Values.cvat.backend.imagePullPolicy }}
49
50
{{- with .Values.cvat.backend.worker.low.resources }}
50
51
resources :
51
52
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change 33
33
containers :
34
34
- name : cvat-frontend-app-container
35
35
image : {{ .Values.cvat.frontend.image }}:{{ .Values.cvat.frontend.tag }}
36
- imagePullPolicy : {{ .Values.cvat.frontend.imagepullpolicy }}
36
+ imagePullPolicy : {{ .Values.cvat.frontend.imagePullPolicy }}
37
37
{{- with .Values.cvat.frontend.resources }}
38
38
resources :
39
39
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change 33
33
containers :
34
34
- name : cvat-opa-app-container
35
35
image : {{ .Values.cvat.opa.image }}:{{ .Values.cvat.opa.tag }}
36
- imagePullPolicy : {{ .Values.cvat.opa.imagepullpolicy }}
36
+ imagePullPolicy : {{ .Values.cvat.opa.imagePullPolicy }}
37
37
args :
38
38
- run
39
39
- --server
Original file line number Diff line number Diff line change 75
75
replicas : 1
76
76
image : cvat/server
77
77
tag : dev
78
- imagepullploicy : IfNotPresent
78
+ imagePullPolicy : Always
79
79
permissionFix :
80
80
enabled : true
81
81
service :
95
95
replicas : 1
96
96
image : cvat/ui
97
97
tag : dev
98
- imagepullploicy : IfNotPresent
98
+ imagePullPolicy : Always
99
99
labels : {}
100
100
# test: test
101
101
annotations : {}
@@ -138,7 +138,7 @@ cvat:
138
138
replicas : 1
139
139
image : openpolicyagent/opa
140
140
tag : 0.34.2-rootless
141
- imagepullploicy : IfNotPresent
141
+ imagePullPolicy : IfNotPresent
142
142
labels : {}
143
143
# test: test
144
144
annotations : {}
Original file line number Diff line number Diff line change 11
11
- mountPath : /home/django/share
12
12
name : cvat-backend-data
13
13
subPath : share
14
+ # Images are already present in the node
15
+ imagePullPolicy : Never
16
+
14
17
traefik :
15
18
service :
16
19
externalIPs :
You can’t perform that action at this time.
0 commit comments