@toptal/davinci-ci 2.0.14-alpha-fx-3224-convert-davinci-dirlint-to-esm-fe023710.4 → 2.0.14-alpha-fx-3224-convert-davinci-dirlint-to-esm-97464b7f.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-ci",
|
|
3
|
-
"version": "2.0.14-alpha-fx-3224-convert-davinci-dirlint-to-esm-
|
|
3
|
+
"version": "2.0.14-alpha-fx-3224-convert-davinci-dirlint-to-esm-97464b7f.8+97464b7f",
|
|
4
4
|
"description": "Continuos integrations tools for frontend projects",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@commitlint/cli": "^17.0.2",
|
|
34
34
|
"@commitlint/config-conventional": "^17.1.0",
|
|
35
|
-
"@toptal/davinci-cli-shared": "1.8.2-alpha-fx-3224-convert-davinci-dirlint-to-esm-
|
|
35
|
+
"@toptal/davinci-cli-shared": "1.8.2-alpha-fx-3224-convert-davinci-dirlint-to-esm-97464b7f.54+97464b7f",
|
|
36
36
|
"danger": "^11.0.7",
|
|
37
37
|
"markdown-table": "^2.0.0"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "97464b7f8627f614d89a5456eebd26112f74a87d"
|
|
40
40
|
}
|
|
@@ -23,6 +23,7 @@ pipeline {
|
|
|
23
23
|
string(name: 'TAG', defaultValue: '', description: 'Image tag to deploy')
|
|
24
24
|
string(name: 'RELEASE', defaultValue: '', description: 'Release name')
|
|
25
25
|
string(name: 'ENV', defaultValue: 'ENV=null', description: 'Environment values in format ENV.key1=value1,ENV.key2=value2')
|
|
26
|
+
string(name: 'DOCKER_REGISTRY', defaultValue: 'gcr.io/toptal-hub', description: 'Name of registry')
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
stages {
|
|
@@ -90,10 +91,10 @@ pipeline {
|
|
|
90
91
|
-f helm_vars/${chart}/temploy/secrets.yaml \
|
|
91
92
|
-f helm_vars/tls-certs/toptal.rocks/values.yaml \
|
|
92
93
|
-f helm_vars/tls-certs/toptal.rocks/secrets.yaml \
|
|
93
|
-
--set image.repository
|
|
94
|
+
--set image.repository=${params.DOCKER_REGISTRY}/${params.REPOSITORY_NAME}-release \
|
|
94
95
|
--set nameOverride=${params.REPOSITORY_NAME} \
|
|
95
96
|
--set-string image.tag=${params.TAG} \
|
|
96
|
-
--set davinci-app.image.repository
|
|
97
|
+
--set davinci-app.image.repository=${params.DOCKER_REGISTRY}/${params.REPOSITORY_NAME}-release \
|
|
97
98
|
--set davinci-app.nameOverride=${params.REPOSITORY_NAME} \
|
|
98
99
|
--set-string davinci-app.image.tag=${params.TAG} \
|
|
99
100
|
--set ${params.ENV} \
|