Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
memoriav
Memobase 2020
services
Import Process
XML Data Transform
Commits
7fad82ae
Commit
7fad82ae
authored
Oct 21, 2020
by
Jonas Waeber
Browse files
Fix reporting
Add prefix to deployment name
parent
9d840493
Pipeline
#15909
passed with stages
in 6 minutes and 2 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
helm-charts/helm-values/xml-data-transform.yaml
View file @
7fad82ae
############################################
## Values in this section are the same for #
## all jobs #
############################################
#image values
registry
:
"
cr.gitlab.switch.ch"
image
:
"
memoriav/memobase-2020/services/import-process/xml-data-transform"
tag
:
"
latest"
deploymentName
:
xml-data-transform-deployment
deploymentName
:
ip-xml-data-transform-deployment
applicationId
:
xml-data-transform-app
kafkaConfigs
:
prod-kafka-bootstrap-servers
...
...
src/main/kotlin/models/Report.kt
View file @
7fad82ae
...
...
@@ -19,11 +19,14 @@
package
org.memobase.models
import
com.beust.klaxon.Klaxon
import
java.time.LocalDateTime
data class
Report
(
val
id
:
String
,
val
status
:
String
,
val
message
:
String
val
message
:
String
,
val
step
:
String
=
"xml-data-transform"
,
val
timestamp
:
String
=
LocalDateTime
.
now
().
toString
()
)
{
override
fun
equals
(
other
:
Any
?):
Boolean
{
return
when
(
other
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment