Skip to content

Commit

Permalink
feat: adding a default value for the fga feature
Browse files Browse the repository at this point in the history
  • Loading branch information
nexus49 committed Dec 9, 2024
1 parent b0704fc commit 6f020db
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ description: A Helm chart for Kubernetes

type: library

version: 0.1.7
version: 0.1.8
1 change: 1 addition & 0 deletions charts/common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Example
| defaults.deployment.revisionHistoryLimit | int | `3` | deployment revision history limit |
| defaults.deployment.strategy | string | `"RollingUpdate"` | deployment strategy |
| defaults.externalSecrets.enabled | bool | `true` | toggle to enable/disable external-secrets |
| defaults.fga.enabled | bool | `false` | toggle to enable/disable experimental FGA features |
| defaults.health.liveness | object | `{"failureThreshold":1,"path":"/healthz"}` | liveness probe parameters |
| defaults.health.periodSeconds | int | `10` | health period |
| defaults.health.port | int | `8081` | health port |
Expand Down
6 changes: 3 additions & 3 deletions charts/common/test-chart/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: file://..
version: 0.1.5
digest: sha256:4922b07dc901a2efda0b3d40954a68fa4dc360421bffdcaf96889b31a972f9b4
generated: "2024-11-26T14:45:17.586883648+02:00"
version: 0.1.8
digest: sha256:eee7e1ccb5821b28c6d01a54bdc5ff4a12887b1306b137d6a8b4610f71ed619a
generated: "2024-12-09T16:40:26.404366+01:00"
2 changes: 1 addition & 1 deletion charts/common/test-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ appVersion: "1.16.0"

dependencies:
- name: common
version: 0.1.5
version: 0.1.8
repository: file://..
Binary file removed charts/common/test-chart/charts/common-0.1.5.tgz
Binary file not shown.
Binary file added charts/common/test-chart/charts/common-0.1.8.tgz
Binary file not shown.
4 changes: 4 additions & 0 deletions charts/common/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ defaults:
# -- name of the gateway
name: gateway

fga:
# -- toggle to enable/disable experimental FGA features
enabled: false

securityContext:
# -- user id to run the container
runAsUser: 1000
Expand Down

0 comments on commit 6f020db

Please sign in to comment.