File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,15 @@ parameters:
20
20
displayName : Source Directory
21
21
value : .
22
22
required : true
23
+ - name : RELEASE_VERSION
24
+ description : The location within the source repo of the application
25
+ displayName : release version
26
+ required : true
27
+ - name : SUFFIX_NAME
28
+ description : The location within the source repo of the application
29
+ displayName : suffix name
30
+ value : .
31
+ required : true
23
32
- name : GITHUB_WEBHOOK_SECRET
24
33
description : A secret string used to configure the GitHub webhook.
25
34
displayName : GitHub Webhook Secret
@@ -50,7 +59,7 @@ objects:
50
59
output :
51
60
to :
52
61
kind : ImageStreamTag
53
- name : ' nodejs-rest-http-crud:latest '
62
+ name : ' nodejs-rest-http-crud:${RELEASE_VERSION} '
54
63
postCommit : {}
55
64
resources : {}
56
65
source :
@@ -136,7 +145,7 @@ objects:
136
145
periodSeconds : 3
137
146
successThreshold : 1
138
147
timeoutSeconds : 1
139
- image : nodejs-rest-http-crud
148
+ image : nodejs-rest-http-crud:${RELEASE_VERSION}
140
149
name : nodejs-rest-http-crud
141
150
securityContext :
142
151
privileged : false
@@ -164,7 +173,7 @@ objects:
164
173
- nodejs-rest-http-crud
165
174
from :
166
175
kind : ImageStreamTag
167
- name : ' nodejs-rest-http-crud:latest '
176
+ name : ' nodejs-rest-http-crud:${RELEASE_VERSION} '
168
177
- apiVersion : v1
169
178
kind : Route
170
179
spec :
You can’t perform that action at this time.
0 commit comments