-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inject feature flags in the Helm chart deployments (#590)
* Inject feature flags in needed deployments * Add feature-flags file * Inject FFs file in workspace-api * Fix * New fix * Fix volume * Fix * Add file in all needed backend services * Mount in workspace-wwww * Change workspace www image and add env var * Fix * Allow overriding featureFlags * Try fix * Redeploy if FFs change * Change checksum name * Last change * Fix
- Loading branch information
Showing
12 changed files
with
208 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
featureFlags: | ||
- name: 2023-builder-hex-code | ||
value: true | ||
- name: 2023-builder-map-explain-public-title | ||
value: true | ||
- name: 2023-builder-map-explain-rich-description | ||
value: true | ||
- name: 2023-builder-map-explain-widget-notes | ||
value: true | ||
- name: 2023-builder-pie-widget | ||
value: true | ||
- name: 2023-cartodw-direct-access | ||
value: true | ||
- name: 2023-custom-schema-imports | ||
value: true | ||
- name: 2023-enable-sharing-apps | ||
value: true | ||
- name: 2023-export-do-subscriptions-from-workspace | ||
value: true | ||
- name: 2023-map-sso-groups-to-roles | ||
value: true | ||
- name: 2023-measure-tool-builder | ||
value: true | ||
- name: 2023-oauth-for-snowflake | ||
value: true | ||
- name: 2023-row-level-security-bq-oauth | ||
value: true | ||
- name: 2023-search-location-by-coordinates | ||
value: true | ||
- name: 2023-server-side-export | ||
value: true | ||
- name: 2023-sql-params-numeric | ||
value: true | ||
- name: 2023-timeseries-improve-multi-and-split | ||
value: true | ||
- name: 2023-timeseries-improve-precision | ||
value: true | ||
- name: 2023-whitelabel-branding | ||
value: true | ||
- name: 2023-workflows-at-home-page | ||
value: true | ||
- name: 2023-workflows-data-export | ||
value: true | ||
- name: 2023-workflows-do | ||
value: true | ||
- name: 2023-workflows-enrichment | ||
value: true | ||
- name: 2023-workflows-export | ||
value: true | ||
- name: 2023-workflows-export-ii | ||
value: true | ||
- name: 2023-workflows-import | ||
value: true | ||
- name: 2023-workflows-scheduling | ||
value: true | ||
- name: 2024-catalog-workflow-templates | ||
value: true | ||
- name: 2024-custom-basemaps | ||
value: true | ||
- name: 2024-databricks-rest-connection-enabled | ||
value: true | ||
- name: 2024-deliver-raw-audit-logs | ||
value: false | ||
- name: 2024-heatmap-aggregation-in-builder | ||
value: true | ||
- name: 2024-query-concurrency-control | ||
value: true | ||
- name: 2024-reduce-number-of-queries | ||
value: true | ||
- name: 2024-tags-for-resources | ||
value: true | ||
- name: 2024-workflows-package-extension | ||
value: false | ||
- name: 2024-workflows-raster-components | ||
value: true | ||
- name: 2024-zoom-to-layer-in-builder | ||
value: true | ||
- name: dynamic-tiling-v-2 | ||
value: true | ||
- name: frontend-2022-collaborative-maps | ||
value: true | ||
- name: frontend-2022-enable-postgres-import | ||
value: true | ||
- name: frontend-2022-enable-redshift-import-after-bucket-configuration | ||
value: true | ||
- name: frontend-2022-help-sidebar | ||
value: true | ||
- name: frontend-2022-new-mini-data-explorer | ||
value: true | ||
- name: frontend-2022-workflows | ||
value: true | ||
- name: frontend-2023-connections-with-viewer-credentials | ||
value: true | ||
- name: frontend-2023-enterprise-sso-just-in-time-provisioning | ||
value: true | ||
- name: frontend-2023-new-developer-ui-for-tokens | ||
value: true | ||
- name: frontend-2023-run-table-optimization-from-ui | ||
value: true | ||
- name: frontend-2023-workflows-all-providers | ||
value: true | ||
- name: frontend-2023-workflows-on-homepage | ||
value: true | ||
- name: frontend-2023-workflows-sharing | ||
value: true | ||
- name: 2024-deprecate-create-tileset-from-dataexplorer-ui | ||
value: '2024-07-22T00:00:00.000Z' | ||
- name: 2024-deprecate-enrich-table-from-dataexplorer-ui | ||
value: '2024-04-04T00:00:00.000Z' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "carto.featureFlags.configMapName" . }} | ||
labels: {{- include "common.labels.standard" . | nindent 4 }} | ||
{{- if .Values.commonLabels }} | ||
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }} | ||
{{- end }} | ||
namespace: {{ .Release.Namespace | quote }} | ||
{{- if .Values.commonAnnotations }} | ||
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }} | ||
{{- end }} | ||
data: | ||
feature-flags.yaml: |- | ||
{{ .Files.Get "feature-flags.yaml" | indent 4 }} | ||
{{- if .Values.cartoConfigValues.featureFlagsOverrides }} | ||
featureFlagsOverrides: | ||
{{ .Values.cartoConfigValues.featureFlagsOverrides | toYaml | indent 6 }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters