Skip to content

Commit

Permalink
Merge pull request #30 from fybrik/create-pull-request/patch
Browse files Browse the repository at this point in the history
Update charts to new release
  • Loading branch information
roytman authored Mar 2, 2022
2 parents 9aa14a6 + 01d94e0 commit 3de507c
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 9 deletions.
6 changes: 3 additions & 3 deletions charts/fybrik-crd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ 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.6.2
version: 0.6.3
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 0.6.2
appVersion: 0.6.3
dependencies:
- name: asset-crd
version: 0.6.2
version: 0.6.3
condition: asset-crd.enabled
4 changes: 2 additions & 2 deletions charts/fybrik-crd/charts/asset-crd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ 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.6.2
version: 0.6.3
# 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.
appVersion: 0.6.2
appVersion: 0.6.3
4 changes: 2 additions & 2 deletions charts/fybrik/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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.6.2
version: 0.6.3
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 0.6.2
appVersion: 0.6.3
1 change: 1 addition & 0 deletions charts/fybrik/kind-control.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ cluster:
# Configuration when deploying to a coordinator cluster.
coordinator:
vault:
enabled: true
# vault service in local setup is exposed via nodeport
address: http://control-control-plane:31752

Expand Down
2 changes: 2 additions & 0 deletions charts/fybrik/templates/cluster-metadata-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ data:
ClusterName: {{ required "cluster name must be set" .Values.cluster.name | quote }}
Region: {{ required "cluster region must be set" .Values.cluster.region | quote }}
Zone: {{ .Values.cluster.zone | quote }}
{{- if .Values.coordinator.vault.enabled }}
VaultAuthPath: {{ required "vaultAuthPath must be set" .Values.cluster.vaultAuthPath | quote }}
{{- end }}
{{- end }}
3 changes: 3 additions & 0 deletions charts/fybrik/templates/fybrik-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ data:
CATALOG_CONNECTOR_URL: {{ .Values.coordinator.catalogConnectorURL | default (printf "http://%s-connector:80" .Values.coordinator.catalog) | quote }}
MAIN_POLICY_MANAGER_NAME: {{ .Values.coordinator.policyManager | quote }}
MAIN_POLICY_MANAGER_CONNECTOR_URL: {{ .Values.coordinator.policyManagerConnectorURL | default (printf "http://%s-connector:80" .Values.coordinator.policyManager) | quote }}
{{- if .Values.coordinator.vault.enabled }}
VAULT_ENABLED: "true"
VAULT_ADDRESS: {{ tpl .Values.coordinator.vault.address . | quote }}
VAULT_MODULES_ROLE: "module" # temporary
{{- end }}
{{- end }}
{{- end }}
2 changes: 2 additions & 0 deletions charts/fybrik/templates/vault-credentials.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{{- if include "fybrik.isEnabled" (tuple .Values.manager.enabled .Values.coordinator.enabled) }}
{{- if .Values.coordinator.vault.enabled }}
apiVersion: v1
kind: Secret
type: Opaque
Expand All @@ -8,4 +9,5 @@ data:
{{ if .Values.coordinator.vault.login.token }}
VAULT_TOKEN: {{ .Values.coordinator.vault.login.token | b64enc }}
{{ end }}
{{- end }}
{{- end }}
6 changes: 5 additions & 1 deletion charts/fybrik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ coordinator:

# Configure the vault instance to be used by the coordinator manager
vault:
# Set to the Vault address.
# WARNING: it's an advanced feature, set it to "false" if all your modules and connectors do not require getting
# credentials from Fybrik.
# If it is "false", you can remove all other entries below.
enabled: true
# Set to the Vault address.
address: "http://vault.{{ .Release.Namespace }}:8200"
# Login method to Vault
login:
Expand Down
2 changes: 1 addition & 1 deletion charts/vault/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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.6.2
version: 0.6.3
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 1.6.2
Expand Down

0 comments on commit 3de507c

Please sign in to comment.