File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -206,10 +206,10 @@ of these checks are optional.
206
206
# ### Supported Fields:
207
207
208
208
- Env (`[]EnvVar`) : A list of environment variable key/value pairs that should be set
209
- in the container.
209
+ in the container. isRegex (*optional*) interpretes the value as regex.
210
210
- Labels (`[]Label`) : A list of image labels key/value pairs that should be set on the
211
- container.
212
- - Entrypoint (`[]string`) : The entrypoint of the container
211
+ container. isRegex (*optional*) interpretes the value as regex.
212
+ - Entrypoint (`[]string`) : The entrypoint of the container.
213
213
- Cmd (`[]string`) : The CMD specified in the container.
214
214
- Exposed Ports (`[]string`) : The ports exposed in the container.
215
215
- Unexposed Ports (`[]string`) : The ports **NOT** exposed in the container.
@@ -226,6 +226,9 @@ metadataTest:
226
226
labels:
227
227
- key: 'com.example.vendor'
228
228
value: 'ACME Incorporated'
229
+ - key: 'build-date'
230
+ value: '^\d {4}-\d {2}-\d {2}T\d {2}:\d {2}:\d {2}\.\d {6}$'
231
+ isRegex: true
229
232
exposedPorts: ["8080", "2345"]
230
233
volumes: ["/test"]
231
234
entrypoint: []
You can’t perform that action at this time.
0 commit comments