Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: cron deploy pipelines #288

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions charts/openmetadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,8 @@ helm install openmetadata open-metadata/openmetadata --values <<path-to-values-f
| openmetadata.config.smtpConfig.username | string | `Empty String` | SMTP_SERVER_USERNAME |
| openmetadata.config.upgradeMigrationConfigs.debug | bool | `false` | |
| openmetadata.config.upgradeMigrationConfigs.additionalArgs | string | `Empty String` | |
| openmetadata.config.deployPipelinesConfig.debug | bool | `false` | |
| openmetadata.config.deployPipelinesConfig.additionalArgs | string | `Empty String` | |
| openmetadata.config.reindexConfig.debug | bool | `false` | |
| openmetadata.config.reindexConfig.additionalArgs | string | `Empty String` | |
| openmetadata.config.web.enabled | bool | `true` | |
Expand All @@ -247,6 +249,7 @@ helm install openmetadata open-metadata/openmetadata --values <<path-to-values-f
| openmetadata.config.web.permission-policy.enabled | bool | `false` | WEB_CONF_PERMISSION_POLICY_ENABLED |
| openmetadata.config.web.permission-policy.option | string | `Empty String` | WEB_CONF_PERMISSION_POLICY_OPTION |


## Chart Values

| Key | Type | Default |
Expand Down
14 changes: 14 additions & 0 deletions charts/openmetadata/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,20 @@ OpenMetadata Configurations Environment Variables*/}}
{{- end }}
{{- end }}


{{/*
Build the OpenMetadata Deploy Pipelines Command using deployPipelinesConfig */}}
{{- define "OpenMetadata.buildDeployPipelinesCommand" }}
- "/bin/bash"
- "-c"
{{- if .Values.openmetadata.config.deployPipelinesConfig.debug }}
- "/opt/openmetadata/bootstrap/openmetadata-ops.sh -d deploy-pipelines {{ default "" .Values.openmetadata.config.deployPipelinesConfig.additionalArgs }}"
{{- else }}
- "/opt/openmetadata/bootstrap/openmetadata-ops.sh deploy-pipelines {{ default "" .Values.openmetadata.config.deployPipelinesConfig.additionalArgs }}"
{{- end }}
{{- end }}


{{/*
Build the OpenMetadata Deploy Pipelines Command using reindexConfig */}}
{{- define "OpenMetadata.buildReindexCommand" }}
Expand Down
133 changes: 133 additions & 0 deletions charts/openmetadata/templates/cron_deploy_pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: cron-deploy-pipelines
labels:
{{- include "OpenMetadata.labels" . | indent 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 8 }}
{{- end }}
labels:
{{- include "OpenMetadata.labels" . | indent 8 }}
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
serviceAccountName: {{ include "OpenMetadata.serviceAccountName" . }}
{{- if not (.Values.automountServiceAccountToken) }}
automountServiceAccountToken: {{ .Values.automountServiceAccountToken}}
{{- end }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
volumes:
{{- include "tplvalues.render" (dict "value" .Values.extraVolumes "context" $) | nindent 16 }}
containers:
- name: cron-deploy-pipelines
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 16 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
volumeMounts:
{{- with .Values.extraVolumeMounts }}
{{- toYaml . | nindent 10 }}
{{- end }}
command:
{{ include "OpenMetadata.buildDeployPipelinesCommand" . | nindent 16 }}
env:
{{- include "OpenMetadata.configs" . | nindent 16 }}
{{- with .Values.extraEnvs }}
{{- toYaml . | nindent 10 }}
{{- 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 10 }}
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 16 }}
{{- if .Values.sidecars }}
{{- include "tplvalues.render" (dict "value" .Values.sidecars "context" $) | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
restartPolicy: OnFailure
schedule: "0/5 * * * *"
12 changes: 12 additions & 0 deletions charts/openmetadata/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,18 @@
}
}
},
"deployPipelinesConfig": {
"type": "object",
"additionalProperties": false,
"properties": {
"additionalArgs": {
"type": "string"
},
"debug": {
"type": "boolean"
}
}
},
"reindexConfig": {
"type": "object",
"additionalProperties": false,
Expand Down
6 changes: 4 additions & 2 deletions charts/openmetadata/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ openmetadata:
# You can pass the additional argument flags to the openmetadata-ops.sh migrate command
# Example if you want to force migration runs, use additionalArgs: "--force"
additionalArgs: ""
deployPipelinesConfig:
debug: false
additionalArgs: ""
reindexConfig:
debug: false
# You can pass the additional argument flags to the openmetadata-ops.sh reindex command
Expand Down Expand Up @@ -414,10 +417,9 @@ securityContext: {}
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: true
# readOnlyRootFilesystem: true
tarunpandey23 marked this conversation as resolved.
Show resolved Hide resolved
# runAsNonRoot: true
# runAsUser: 100

service:
type: ClusterIP
port: 8585
Expand Down
Loading