Skip to content

Commit

Permalink
fix(datahub): Update datahub
Browse files Browse the repository at this point in the history
  • Loading branch information
plural-renovate[bot] committed Jul 27, 2023
1 parent e4cb20c commit e478cd3
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions datahub/helm/datahub/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ dependencies:
version: 0.2.166
- name: postgres
repository: https://pluralsh.github.io/module-library
version: 0.1.10
digest: sha256:3a1053b6eb15fd64a59aa307a477b84ae233eca15480b9c005bc7e895a435200
generated: "2023-05-30T20:02:36.386306+02:00"
version: 0.1.17
digest: sha256:334542df0030482f15b0e5b7615725746bbe5c7659d58c5241993be638e49faa
generated: "2023-07-27T16:34:29.188987905Z"
4 changes: 2 additions & 2 deletions datahub/helm/datahub/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ apiVersion: v2
name: datahub
description: helm chart for datahub
type: application
version: 0.1.16
version: 0.1.17
appVersion: v0.10.3
dependencies:
- name: datahub
version: 0.2.166
repository: https://pluralsh.github.io/plural-helm-charts
- name: postgres
version: 0.1.10
version: 0.1.17
repository: https://pluralsh.github.io/module-library
Binary file removed datahub/helm/datahub/charts/postgres-0.1.10.tgz
Binary file not shown.
Binary file added datahub/helm/datahub/charts/postgres-0.1.17.tgz
Binary file not shown.
40 changes: 20 additions & 20 deletions datahub/helm/datahub/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ datahub:
datahub-frontend:
image:
repository: dkr.plural.sh/datahub/linkedin/datahub-frontend-react
tag: v0.10.3
tag: v0.10.4
service:
type: ClusterIP
serviceMonitor:
Expand All @@ -44,7 +44,7 @@ datahub:
memory: 1Gi
extraInitContainers:
- name: wait-for-gms
image: gcr.io/pluralsh/library/busybox:1.36.0
image: gcr.io/pluralsh/library/busybox:1.36.1
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "until nc -zv datahub-datahub-gms 8080 -w1; do echo 'waiting for gms'; sleep 1; done" ]
extraVolumes:
Expand All @@ -68,28 +68,28 @@ datahub:
datahub-gms:
image:
repository: dkr.plural.sh/datahub/linkedin/datahub-gms
tag: v0.10.3
tag: v0.10.4
serviceMonitor:
create: true
extraInitContainers:
- name: wait-for-elasticsearch-job
image: gcr.io/pluralsh/bitnami/kubectl:1.25.8
image: gcr.io/pluralsh/bitnami/kubectl:1.25.12
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "NEXT_WAIT_TIME=0; FINISH_TIME=15; until [ $NEXT_WAIT_TIME -eq $FINISH_TIME ] || (kubectl get -n datahub job/datahub-elasticsearch-setup-job >/dev/null); do echo 'waiting to find datahub-elasticsearch-setup-job'; NEXT_WAIT_TIME=$(( NEXT_WAIT_TIME+1 )); sleep $NEXT_WAIT_TIME; done; if [ $NEXT_WAIT_TIME -eq $FINISH_TIME ]; then echo 'Job not found and timeout reached, assuming job has run successfully'; else echo 'waiting for datahub-elasticsearch-setup-job'; kubectl wait --for=condition=complete --timeout=300s -n datahub job/datahub-elasticsearch-setup-job; fi" ]
- name: wait-for-kafka-job
image: gcr.io/pluralsh/bitnami/kubectl:1.25.8
image: gcr.io/pluralsh/bitnami/kubectl:1.25.12
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "NEXT_WAIT_TIME=0; FINISH_TIME=15; until [ $NEXT_WAIT_TIME -eq $FINISH_TIME ] || (kubectl get -n datahub job/datahub-kafka-setup-job >/dev/null); do echo 'waiting to find datahub-kafka-setup-job'; NEXT_WAIT_TIME=$(( NEXT_WAIT_TIME+1 )); sleep $NEXT_WAIT_TIME; done; if [ $NEXT_WAIT_TIME -eq $FINISH_TIME ]; then echo 'Job not found and timeout reached, assuming job has run successfully'; else echo 'waiting for datahub-kafka-setup-job'; kubectl wait --for=condition=complete --timeout=300s -n datahub job/datahub-kafka-setup-job; fi" ]
- name: wait-for-postgres-job
image: gcr.io/pluralsh/bitnami/kubectl:1.25.8
image: gcr.io/pluralsh/bitnami/kubectl:1.25.12
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "NEXT_WAIT_TIME=0; FINISH_TIME=15; until [ $NEXT_WAIT_TIME -eq $FINISH_TIME ] || (kubectl get -n datahub job/datahub-postgresql-setup-job >/dev/null); do echo 'waiting to find datahub-postgresql-setup-job'; NEXT_WAIT_TIME=$(( NEXT_WAIT_TIME+1 )); sleep $NEXT_WAIT_TIME; done; if [ $NEXT_WAIT_TIME -eq $FINISH_TIME ]; then echo 'Job not found and timeout reached, assuming job has run successfully'; else echo 'waiting for datahub-postgresql-setup-job'; kubectl wait --for=condition=complete --timeout=300s -n datahub job/datahub-postgresql-setup-job; fi" ]
- name: wait-for-datahub-system-update-job
image: gcr.io/pluralsh/bitnami/kubectl:1.25.8
image: gcr.io/pluralsh/bitnami/kubectl:1.25.12
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "NEXT_WAIT_TIME=0; FINISH_TIME=15; until [ $NEXT_WAIT_TIME -eq $FINISH_TIME ] || (kubectl get -n datahub job/datahub-datahub-system-update-job >/dev/null); do echo 'waiting to find datahub-datahub-system-update-job'; NEXT_WAIT_TIME=$(( NEXT_WAIT_TIME+1 )); sleep $NEXT_WAIT_TIME; done; if [ $NEXT_WAIT_TIME -eq $FINISH_TIME ]; then echo 'Job not found and timeout reached, assuming job has run successfully'; else echo 'waiting for datahub-datahub-system-update-job'; kubectl wait --for=condition=complete --timeout=300s -n datahub job/datahub-datahub-system-update-job; fi" ]
- name: wait-for-pg
image: gcr.io/pluralsh/library/busybox:1.36.0
image: gcr.io/pluralsh/library/busybox:1.36.1
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "until nc -zv plural-postgres-datahub 5432 -w1; do echo 'waiting for db'; sleep 1; done" ]
service:
Expand All @@ -109,7 +109,7 @@ datahub:
create: true
image:
repository: dkr.plural.sh/datahub/acryldata/datahub-actions
tag: v0.0.12
tag: v0.0.13
resources:
limits:
memory: 512Mi
Expand All @@ -118,29 +118,29 @@ datahub:
memory: 256Mi
extraInitContainers:
- name: wait-for-gms
image: gcr.io/pluralsh/library/busybox:1.36.0
image: gcr.io/pluralsh/library/busybox:1.36.1
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "until nc -zv datahub-datahub-gms 8080 -w1; do echo 'waiting for gms'; sleep 1; done" ]

datahub-mae-consumer:
image:
repository: dkr.plural.sh/datahub/linkedin/datahub-mae-consumer
tag: v0.10.3
tag: v0.10.4
serviceMonitor:
create: true

datahub-mce-consumer:
image:
repository: dkr.plural.sh/datahub/linkedin/datahub-mce-consumer
tag: v0.10.3
tag: v0.10.4
serviceMonitor:
create: true

datahub-ingestion-cron:
enabled: false
image:
repository: dkr.plural.sh/datahub/acryldata/datahub-ingestion
tag: v0.10.3
tag: v0.10.5

mysqlSetupJob:
enabled: false
Expand All @@ -149,10 +149,10 @@ datahub:
enabled: true
image:
repository: dkr.plural.sh/datahub/acryldata/datahub-postgres-setup
tag: v0.10.3
tag: v0.10.5
extraInitContainers:
- name: wait-for-pg
image: gcr.io/pluralsh/library/busybox:1.36.0
image: gcr.io/pluralsh/library/busybox:1.36.1
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "until nc -zv plural-postgres-datahub 5432 -w1; do echo 'waiting for db'; sleep 1; done" ]
resources:
Expand All @@ -173,7 +173,7 @@ datahub:
enabled: true
image:
repository: dkr.plural.sh/datahub/linkedin/datahub-elasticsearch-setup
tag: v0.10.3
tag: v0.10.4
resources:
requests:
cpu: 5m
Expand All @@ -187,7 +187,7 @@ datahub:
enabled: true
image:
repository: dkr.plural.sh/datahub/linkedin/datahub-kafka-setup
tag: v0.10.3
tag: v0.10.4
resources:
requests:
cpu: 0.4
Expand All @@ -201,12 +201,12 @@ datahub:
enabled: true
image:
repository: dkr.plural.sh/datahub/acryldata/datahub-upgrade
tag: v0.10.3
tag: v0.10.4
noCodeDataMigration:
sqlDbType: POSTGRES
extraInitContainers:
- name: wait-for-gms
image: gcr.io/pluralsh/library/busybox:1.36.0
image: gcr.io/pluralsh/library/busybox:1.36.1
imagePullPolicy: IfNotPresent
command: [ "/bin/sh", "-c", "until nc -zv datahub-datahub-gms 8080 -w1; do echo 'waiting for gms'; sleep 1; done" ]
# annotations:
Expand All @@ -217,7 +217,7 @@ datahub:
datahubSystemUpdate:
image:
repository: dkr.plural.sh/datahub/acryldata/datahub-upgrade
tag: v0.10.3
tag: v0.10.4
annotations:
helm.sh/hook: post-install,pre-upgrade
# helm.sh/hook-weight: "-4"
Expand Down

0 comments on commit e478cd3

Please sign in to comment.