Skip to content

Commit

Permalink
k8s: Add labels to get-data jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Sep 14, 2021
1 parent 3da2525 commit 2859878
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions contrib/k8s/get-data.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@ function(
name: 'get-geo-data',
labels: {
app: 'auctus',
what: 'get-geo-data',
},
},
spec: {
template: {
metadata: {
labels: {
app: 'auctus',
what: 'get-geo-data',
},
},
spec: {
restartPolicy: 'Never',
containers: [
Expand Down Expand Up @@ -53,10 +60,17 @@ function(
name: 'get-es-synonyms',
labels: {
app: 'auctus',
what: 'get-es-synonyms',
},
},
spec: {
template: {
metadata: {
labels: {
app: 'auctus',
what: 'get-es-synonyms',
},
},
spec: {
restartPolicy: 'Never',
containers: [
Expand Down

0 comments on commit 2859878

Please sign in to comment.