Skip to content

Commit

Permalink
feat: add ability to set replica counts for web servers
Browse files Browse the repository at this point in the history
also bump version to latest
  • Loading branch information
RobertKeyser committed Nov 1, 2024
1 parent d31624e commit 35132c0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,21 @@ The types of changes are:
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [Unreleased](https://github.com/ethyca/fides-helm/compare/fides-0.15...main)
## [Unreleased](https://github.com/ethyca/fides-helm/compare/fides-0.16.1...main)

### Added


### Fixed

## [0.16.1](https://github.com/ethyca/fides-helm/compare/fides-0.15.0...fides-0.16.1)

### Added
- Ability to set replica count for Fides Webservers and Fides Privacy Center [#79](https://github.com/ethyca/fides-helm/pull/79)

### Changed
- Upgrade Fides version to [`2.48.1`](https://github.com/ethyca/fides/releases/tag/2.48.1) [#79](https://github.com/ethyca/fides-helm/pull/79)


### Changed

Expand Down
4 changes: 2 additions & 2 deletions fides-minimal/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: fides-minimal
version: 0.15.1
appVersion: "2.36.0"
version: 0.16.0
appVersion: "2.48.1"
description: Fides is an open-source privacy engineering platform for managing the fulfillment of data privacy requests in your runtime environment, and the enforcement of privacy regulations in your code. This version of the Helm chart removes some excess features such as the lookup function which may not be available in all cases.
type: application
keywords:
Expand Down
2 changes: 1 addition & 1 deletion fides-minimal/templates/privacy-center/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
labels:
{{- include "fides.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.fides.privacyCenter.count | int }}
replicas: {{ .Values.privacyCenter.count | int }}
selector:
matchLabels:
{{- include "fides.privacyCenter.selectorLabels" . | nindent 6 }}
Expand Down
4 changes: 2 additions & 2 deletions fides/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: fides
version: 0.16.0-dev
appVersion: "2.36.0"
version: 0.16.1
appVersion: "2.48.1"
description: Fides is an open-source privacy engineering platform for managing the fulfillment of data privacy requests in your runtime environment, and the enforcement of privacy regulations in your code.
type: application
keywords:
Expand Down
2 changes: 1 addition & 1 deletion fides/templates/privacy-center/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ metadata:
labels:
{{- include "fides.labels" . | nindent 4 }}
spec:
replicas: {{ .Values.fides.privacyCenter.count | int }}
replicas: {{ .Values.privacyCenter.count | int }}
selector:
matchLabels:
{{- include "fides.privacyCenter.selectorLabels" . | nindent 6 }}
Expand Down

0 comments on commit 35132c0

Please sign in to comment.