-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Indentation Issue for Cron Jobs (#295)
* fix: Indentation Issue for Cron Jobs * fix: Helm Lint issues fixed
- Loading branch information
1 parent
a347c30
commit 04fd724
Showing
3 changed files
with
216 additions
and
215 deletions.
There are no files selected for viewing
132 changes: 132 additions & 0 deletions
132
charts/openmetadata/templates/cron-deploy-pipelines.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
apiVersion: batch/v1 | ||
kind: CronJob | ||
metadata: | ||
name: cron-deploy-pipelines | ||
labels: | ||
{{- include "OpenMetadata.labels" . | nindent 4 }} | ||
{{- with .Values.deploymentAnnotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
suspend: true | ||
failedJobsHistoryLimit: 1 | ||
successfulJobsHistoryLimit: 1 | ||
jobTemplate: | ||
metadata: | ||
name: cron-deploy-pipelines | ||
spec: | ||
selector: | ||
matchLabels: | ||
{{- include "OpenMetadata.selectorLabels" . | nindent 6 }} | ||
template: | ||
metadata: | ||
{{- with .Values.podAnnotations }} | ||
annotations: | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
labels: | ||
{{- include "OpenMetadata.labels" . | nindent 12 }} | ||
spec: | ||
{{- with .Values.imagePullSecrets }} | ||
imagePullSecrets: | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
serviceAccountName: {{ include "OpenMetadata.serviceAccountName" . }} | ||
{{- if not (.Values.automountServiceAccountToken) }} | ||
automountServiceAccountToken: {{ .Values.automountServiceAccountToken }} | ||
{{- end }} | ||
securityContext: | ||
{{- toYaml .Values.podSecurityContext | nindent 12 }} | ||
volumes: | ||
{{- include "tplvalues.render" (dict "value" .Values.extraVolumes "context" $) | nindent 12 }} | ||
containers: | ||
- name: cron-deploy-pipelines | ||
securityContext: | ||
{{- toYaml .Values.securityContext | nindent 14 }} | ||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" | ||
imagePullPolicy: {{ .Values.image.pullPolicy }} | ||
volumeMounts: | ||
{{- with .Values.extraVolumeMounts }} | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
command: | ||
{{ include "OpenMetadata.buildDeployPipelinesCommand" . | nindent 12 }} | ||
env: | ||
{{- include "OpenMetadata.configs" . | nindent 12 }} | ||
{{- with .Values.extraEnvs }} | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
envFrom: | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-config-secret | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-omd-secret | ||
{{- if .Values.openmetadata.config.database.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-db-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.elasticsearch.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-search-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.authorizer.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-authorizer-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.secretsManager.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-secretsmanager-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.web.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-web-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.authentication.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-authentication-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.eventMonitor.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-eventmonitor-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.pipelineServiceClientConfig.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-pipeline-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.smtpConfig.enableSmtpServer }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-smtp-secret | ||
{{- end }} | ||
{{- if .Values.openmetadata.config.jwtTokenConfiguration.enabled }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" . }}-jwt-secret | ||
{{- end }} | ||
{{- with .Values.openmetadata.config.fernetkey }} | ||
{{- if not .secretRef }} | ||
- secretRef: | ||
name: {{ include "OpenMetadata.fullname" $ }}-fernetkey-secret | ||
{{- end }} | ||
{{- end }} | ||
{{- with .Values.envFrom }} | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
resources: | ||
{{- toYaml .Values.resources | nindent 14 }} | ||
{{- if .Values.sidecars }} | ||
{{- include "tplvalues.render" (dict "value" .Values.sidecars "context" $) | nindent 10 }} | ||
{{- end }} | ||
{{- with .Values.nodeSelector }} | ||
nodeSelector: | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
{{- with .Values.affinity }} | ||
affinity: | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
{{- with .Values.tolerations }} | ||
tolerations: | ||
{{- toYaml . | nindent 12 }} | ||
{{- end }} | ||
restartPolicy: OnFailure | ||
schedule: "0/5 * * * *" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.