Skip to content

Commit

Permalink
fix long names problems
Browse files Browse the repository at this point in the history
  • Loading branch information
schneidermr committed Jan 10, 2025
1 parent 767bbdc commit 9f271ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
apiVersion: {{ include "datahub.cronjob.apiVersion" $}}
kind: CronJob
metadata:
name: {{ .Release.Name }}-datahub-cleanup-job-template
name: {{ printf "%s-datahub-cleanup-job-template" .Release.Name | trunc 52 }}
labels:
{{- include "datahub.labels" . | nindent 4 }}
spec:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
apiVersion: {{ include "datahub.cronjob.apiVersion" $}}
kind: CronJob
metadata:
name: {{ .Release.Name }}-datahub-restore-indices-job-template
name: {{ printf "%s-datahub-restore-indices-job-template" .Release.Name | trunc 52 }}
labels:
{{- include "datahub.labels" . | nindent 4 }}
spec:
Expand Down

0 comments on commit 9f271ce

Please sign in to comment.