Skip to content

Commit

Permalink
Feat/prepare-1-2-3-release (#200)
Browse files Browse the repository at this point in the history
* feat: add `openmetadata.config.authentication.responseType` field

* chore: Bump Chart Versions

* feat: add `openmetadata.config.authentication.responseType` field
  • Loading branch information
akash-jain-10 authored Dec 8, 2023
1 parent b19f7d5 commit df6dfaa
Show file tree
Hide file tree
Showing 7 changed files with 11 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 @@ -16,13 +16,13 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 1.2.3
version: 1.2.5

# 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: "1.2.2"
appVersion: "1.2.3"

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 @@ -61,7 +61,7 @@ airflow:
airflow:
image:
repository: docker.getcollate.io/openmetadata/ingestion
tag: 1.2.2
tag: 1.2.3
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 @@ -16,13 +16,13 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 1.2.4
version: 1.2.5

# 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: "1.2.2"
appVersion: "1.2.3"

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

Expand Down
2 changes: 1 addition & 1 deletion charts/openmetadata/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ helm install openmetadata open-metadata/openmetadata --values <<path-to-values-f
| fullnameOverride | string | `"openmetadata"` |
| image.pullPolicy | string | `"Always"` |
| image.repository | string | `"docker.getcollate.io/openmetadata/server"` |
| image.tag | string | `1.2.2` |
| image.tag | string | `1.2.3` |
| imagePullSecrets | list | `[]` |
| ingress.annotations | object | `{}` |
| ingress.className | string | `""` |
Expand Down
1 change: 1 addition & 0 deletions charts/openmetadata/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,7 @@ data:
AUTHENTICATION_JWT_PRINCIPAL_CLAIMS: {{ include "OpenMetadata.commaJoinedQuotedEncodedList" (dict "value" .Values.openmetadata.config.authentication.jwtPrincipalClaims) }}
{{- with .Values.openmetadata.config.authentication }}
AUTHENTICATION_PROVIDER: {{ .provider | quote | b64enc }}
AUTHENTICATION_RESPONSE_TYPE: {{ .responseType | quote | b64enc }}
AUTHENTICATION_AUTHORITY: {{ .authority | quote | b64enc }}
AUTHENTICATION_CLIENT_ID: {{ .clientId | quote | b64enc }}
AUTHENTICATION_CALLBACK_URL: {{ .callbackUrl | quote | b64enc }}
Expand Down
3 changes: 3 additions & 0 deletions charts/openmetadata/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,9 @@
"http://openmetadata:8585/api/v1/system/config/jwks"
]
},
"responseType": {
"type": "string"
},
"ldapConfiguration": {
"type": "object",
"additionalProperties": false,
Expand Down
1 change: 1 addition & 0 deletions charts/openmetadata/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ openmetadata:
authority: "https://accounts.google.com"
clientId: ""
callbackUrl: ""
responseType: id_token
jwtPrincipalClaims:
- "email"
- "preferred_username"
Expand Down

0 comments on commit df6dfaa

Please sign in to comment.