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: Prepare Release 1.4.8 #253

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
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.4.7
version: 1.4.8

# 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.4.7"
appVersion: "1.4.8"

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.4.7
tag: 1.4.8
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.4.7
version: 1.4.8

# 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.4.7"
appVersion: "1.4.8"

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 @@ -258,7 +258,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.4.7` |
| image.tag | string | `1.4.8` |
| imagePullSecrets | list | `[]` |
| ingress.annotations | object | `{}` |
| ingress.className | string | `""` |
Expand Down
15 changes: 12 additions & 3 deletions charts/openmetadata/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,17 @@ OpenMetadata Configurations Environment Variables*/}}
key: {{ .secretKey }}
{{- end }}
{{- end }}
{{- if or .Values.openmetadata.config.authentication.saml.security.wantAssertionEncrypted .Values.openmetadata.config.authentication.saml.security.wantNameIdEncrypted }}
# Key Store should only be considered if either wantAssertionEncrypted or wantNameIdEncrypted will be true
{{- if .Values.openmetadata.config.authentication.saml.sp.spPrivateKey.secretRef }}
{{- with .Values.openmetadata.config.authentication.saml.sp.spPrivateKey }}
- name: SAML_SP_PRIVATE_KEY
valueFrom:
secretKeyRef:
name: {{ .secretRef }}
key: {{ .secretKey }}
{{- end }}
{{- end }}
{{- if .Values.openmetadata.config.authentication.saml.security.wantAssertionEncrypted }}
# Key Store should only be considered if wantAssertionEncrypted will be true
{{- if .Values.openmetadata.config.authentication.saml.security.keyStoreAlias.secretRef }}
{{- with .Values.openmetadata.config.authentication.saml.security.keyStoreAlias }}
- name: SAML_KEYSTORE_ALIAS
Expand Down Expand Up @@ -325,4 +334,4 @@ OpenMetadata Configurations Environment Variables*/}}
key: {{ .secretKey }}
{{- end }}
{{- end }}
{{- end }}
{{- end }}
6 changes: 3 additions & 3 deletions charts/openmetadata/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -286,16 +286,16 @@ data:
SAML_SP_ACS: {{ .saml.sp.acs | quote | b64enc }}
SAML_SP_CALLBACK: {{ .saml.sp.callback | quote | b64enc }}
SAML_STRICT_MODE: {{ .saml.security.strictMode | quote | b64enc }}
SAML_VALIDATE_XML: {{ .saml.security.validateXml | quote | b64enc }}
SAML_SP_TOKEN_VALIDITY: {{ .saml.security.tokenValidity | quote | b64enc }}
SAML_SEND_ENCRYPTED_NAME_ID: {{ .saml.security.sendEncryptedNameId | quote | b64enc }}
SAML_SEND_SIGNED_AUTH_REQUEST: {{ .saml.security.sendSignedAuthRequest | quote | b64enc }}
SAML_SIGNED_SP_METADATA: {{ .saml.security.signSpMetadata | quote | b64enc }}
SAML_WANT_MESSAGE_SIGNED: {{ .saml.security.wantMessagesSigned | quote | b64enc }}
SAML_WANT_ASSERTION_SIGNED: {{ .saml.security.wantAssertionsSigned | quote | b64enc }}
SAML_WANT_ASSERTION_ENCRYPTED: {{ .saml.security.wantAssertionEncrypted | quote | b64enc }}
SAML_WANT_NAME_ID_ENCRYPTED: {{ .saml.security.wantNameIdEncrypted | quote | b64enc }}
# Key Store should only be considered if either wantAssertionEncrypted or wantNameIdEncrypted will be true
{{- if or .saml.security.wantAssertionEncrypted .saml.security.wantNameIdEncrypted }}
# Key Store should only be considered if wantAssertionEncrypted will be true
{{- if .saml.security.wantAssertionEncrypted }}
SAML_KEYSTORE_FILE_PATH: {{ .saml.security.keyStoreFilePath | quote | b64enc }}
{{ end }}
{{ end }}
Expand Down
17 changes: 14 additions & 3 deletions charts/openmetadata/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,17 @@
}
}
},
"spPrivateKey": {
"type": "object",
"properties": {
"secretRef": {
"type": "string"
},
"secretKey": {
"type": "string"
}
}
},
"callback": {
"type": "string"
}
Expand All @@ -586,6 +597,9 @@
"strictMode": {
"type": "boolean"
},
"validatexml": {
"type": "boolean"
},
"tokenValidity": {
"type": "integer"
},
Expand All @@ -607,9 +621,6 @@
"wantAssertionEncrypted": {
"type": "boolean"
},
"wantNameIdEncrypted": {
"type": "boolean"
},
"keyStoreFilePath": {
"type": "string"
},
Expand Down
5 changes: 4 additions & 1 deletion charts/openmetadata/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,17 +192,20 @@ openmetadata:
spX509Certificate:
secretRef: ""
secretKey: ""
spPrivateKey:
secretRef: ""
secretKey: ""
callback: "http://openmetadata:8585/saml/callback"
security:
strictMode: false
validateXml: false
tokenValidity: 3600
sendEncryptedNameId: false
sendSignedAuthRequest: false
signSpMetadata: false
wantMessagesSigned: false
wantAssertionsSigned: false
wantAssertionEncrypted: false
wantNameIdEncrypted: false
keyStoreFilePath: ""
keyStoreAlias:
secretRef: ""
Expand Down
Loading