Skip to content

Commit

Permalink
Feat: 0.10.1 Release (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
akash-jain-10 authored May 18, 2022
1 parent 8d1d676 commit 14fb6d4
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/deps/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.21
version: 0.0.22

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.10.0"
appVersion: "0.10.1"

home: https://open-metadata.org/

Expand Down
2 changes: 1 addition & 1 deletion charts/deps/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ airflow:
airflow:
image:
repository: openmetadata/airflow
tag: 0.10.0
tag: 0.10.1
pullPolicy: "IfNotPresent"
executor: "KubernetesExecutor"
config:
Expand Down
4 changes: 2 additions & 2 deletions charts/openmetadata/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.21
version: 0.0.22

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.10.0"
appVersion: "0.10.1"

home: https://open-metadata.org/

Expand Down
7 changes: 6 additions & 1 deletion charts/openmetadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ This is achieved by Helm Hooks currently.
| global.elasticsearch.trustStore.path | string | `Empty String` |
| global.elasticsearch.trustStore.password.secretRef | string | `elasticsearch-truststore-secrets` |
| global.elasticsearch.trustStore.password.secretKey | string | `openmetadata-elasticsearch-truststore-password` |
| global.jwtTokenConfiguration.enabled | bool | `false` |
| global.jwtTokenConfiguration.rsapublicKeyFilePath | string | `Empty String` |
| global.jwtTokenConfiguration.rsaprivateKeyFilePath | string | `Empty String` |
| global.jwtTokenConfiguration.jwtissuer | string | `open-metadata.org` |
| global.jwtTokenConfiguration.keyId | string | `Gb389a-9f76-gdjs-a92j-0242bk94356` |
| global.mysql.auth.password.secretRef | string | `mysql-secrets` |
| global.mysql.auth.password.secretKey | string | `openmetadata-mysql-password` |
| global.mysql.auth.username | string | `openmetadata_user` |
Expand All @@ -110,7 +115,7 @@ This is achieved by Helm Hooks currently.
| fullnameOverride | string | `"openmetadata"` |
| image.pullPolicy | string | `"Always"` |
| image.repository | string | `"openmetadata/server"` |
| image.tag | string | `0.10.0` |
| image.tag | string | `0.10.1` |
| imagePullSecrets | list | `[]` |
| livenessProbe.initialDelaySeconds | int | `60` |
| livenessProbe.periodSeconds | int | `30` |
Expand Down
10 changes: 10 additions & 0 deletions charts/openmetadata/templates/check-db-migrations-job-hook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ spec:
value: "{{ .Values.global.elasticsearch.port }}"
- name: ELASTICSEARCH_SCHEME
value: "{{ .Values.global.elasticsearch.scheme }}"
{{- if .Values.global.jwtTokenConfiguration.enabled }}
- name: RSA_PUBLIC_KEY_FILE_PATH
value: "{{ .Values.global.jwtTokenConfiguration.rsapublicKeyFilePath }}"
- name: RSA_PRIVATE_KEY_FILE_PATH
value: "{{ .Values.global.jwtTokenConfiguration.rsaprivateKeyFilePath }}"
- name: JWT_ISSUER
value: "{{ .Values.global.jwtTokenConfiguration.jwtissuer }}"
- name: JWT_KEY_ID
value: "{{ .Values.global.jwtTokenConfiguration.keyId }}"
{{- end }}
{{- if .Values.global.elasticsearch.auth.enabled -}}
{{- with .Values.global.elasticsearch.auth }}
- name: ELASTICSEARCH_USER
Expand Down
10 changes: 10 additions & 0 deletions charts/openmetadata/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,16 @@ spec:
value: "{{ .Values.global.authorizer.botPrincipals | toStrings }}"
- name: AUTHORIZER_PRINCIPAL_DOMAIN
value: "{{ .Values.global.authorizer.principalDomain }}"
{{- if .Values.global.jwtTokenConfiguration.enabled }}
- name: RSA_PUBLIC_KEY_FILE_PATH
value: "{{ .Values.global.jwtTokenConfiguration.rsapublicKeyFilePath }}"
- name: RSA_PRIVATE_KEY_FILE_PATH
value: "{{ .Values.global.jwtTokenConfiguration.rsaprivateKeyFilePath }}"
- name: JWT_ISSUER
value: "{{ .Values.global.jwtTokenConfiguration.jwtissuer }}"
- name: JWT_KEY_ID
value: "{{ .Values.global.jwtTokenConfiguration.keyId }}"
{{- end }}
- name: ELASTICSEARCH_HOST
value: "{{ .Values.global.elasticsearch.host }}"
- name: ELASTICSEARCH_PORT
Expand Down
8 changes: 8 additions & 0 deletions charts/openmetadata/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ global:
authority: ""
clientId: ""
callbackUrl: ""
jwtTokenConfiguration:
enabled: false
# File Path on Airflow Container
rsapublicKeyFilePath: ""
# File Path on Airflow Container
rsaprivateKeyFilePath: ""
jwtissuer: "open-metadata.org"
keyId: "Gb389a-9f76-gdjs-a92j-0242bk94356"

# Example Google SSO Auth Config
# authorizer:
Expand Down

0 comments on commit 14fb6d4

Please sign in to comment.