Skip to content
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: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

### Added

* Add support for `LifecycleStateChangeFacet` with an ability to softly delete datasets.
* Add support for `LifecycleStateChangeFacet` with an ability to softly delete datasets [@pawel-big-lebowski](https://github.com/pawel-big-lebowski)
* Enable pod specific annotations in Marquez Helm Chart via `marquez.podAnnotations` [@wslulciuc](https://github.com/wslulciuc)

## [0.21.0](https://github.com/MarquezProject/marquez/compare/0.20.0...0.21.0) - 2022-03-03

Expand Down
37 changes: 19 additions & 18 deletions chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,26 @@ helm delete marquez

### [Marquez](https://github.com/MarquezProject/marquez) **parameters**

| Parameter | Description | Default |
|------------------------------|----------------------------------|--------------------------|
| `marquez.replicaCount` | Number of desired replicas | `1` |
| `marquez.image.registry` | Marquez image registry | `docker.io` |
| `marquez.image.repository` | Marquez image repository | `marquezproject/marquez` |
| `marquez.image.tag` | Marquez image tag | `0.15.0` |
| `marquez.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| Parameter | Description | Default |
|------------------------------|----------------------------------------|--------------------------|
| `marquez.replicaCount` | Number of desired replicas | `1` |
| `marquez.image.registry` | Marquez image registry | `docker.io` |
| `marquez.image.repository` | Marquez image repository | `marquezproject/marquez` |
| `marquez.image.tag` | Marquez image tag | `0.15.0` |
| `marquez.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `marquez.existingSecretName` | Name of an existing secret containing db password ('marquez-db-password' key) | `nil` |
| `marquez.db.host` | PostgreSQL host | `localhost` |
| `marquez.db.port` | PostgreSQL port | `5432` |
| `marquez.db.name` | PostgreSQL database | `marquez` |
| `marquez.db.user` | PostgreSQL user | `buendia` |
| `marquez.db.password` | PostgreSQL password | `macondo` |
| `marquez.migrateOnStartup` | Execute Flyway migration | `true` |
| `marquez.hostname` | Marquez hostname | `localhost` |
| `marquez.port` | API host port | `5000` |
| `marquez.adminPort` | Heath/Liveness host port | `5001` |
| `marquez.resources.limits` | K8s resource limit overrides | `nil` |
| `marquez.resources.requests` | K8s resource requests overrides | `nil` |
| `marquez.db.host` | PostgreSQL host | `localhost` |
| `marquez.db.port` | PostgreSQL port | `5432` |
| `marquez.db.name` | PostgreSQL database | `marquez` |
| `marquez.db.user` | PostgreSQL user | `buendia` |
| `marquez.db.password` | PostgreSQL password | `macondo` |
| `marquez.migrateOnStartup` | Execute Flyway migration | `true` |
| `marquez.hostname` | Marquez hostname | `localhost` |
| `marquez.port` | API host port | `5000` |
| `marquez.adminPort` | Heath/Liveness host port | `5001` |
| `marquez.resources.limits` | K8s resource limit overrides | `nil` |
| `marquez.resources.requests` | K8s resource requests overrides | `nil` |
| `marquez.podAnnotations` | Additional pod annotations for Marquez | `{}` |

### [Marquez Web UI](https://github.com/MarquezProject/marquez-web) **parameters**

Expand Down
10 changes: 7 additions & 3 deletions chart/templates/marquez/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ metadata:
{{- include "common.tplvalues.render" (dict "value" .Values.commonLabels "context" $) | nindent 4 }}
{{- end }}
app.kubernetes.io/component: marquez
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }}
{{- end }}
annotations:
{{- if .Values.commonAnnotations }}
{{- include "common.tplvalues.render" (dict "value" .Values.commonAnnotations "context" $) | nindent 4 }}
{{- end }}
{{- range $key, $value := .Values.marquez.podAnnotations }}
{{ $key }}: {{ include "common.tplvalues.render" (dict "value" $value "context" $) | quote }}
{{- end }}
spec:
selector:
matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }}
Expand Down
4 changes: 4 additions & 0 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ marquez:
requests: {}
# memory: 256Mi
# cpu: 250m
podAnnotations: {}
## - name:
## value:
##

## Properties related to Marquez frontend functionality
##
Expand Down