Skip to content

Commit 574e773

Browse files
committed
improve documentation
1 parent 6c70692 commit 574e773

File tree

2 files changed

+25
-17
lines changed

2 files changed

+25
-17
lines changed

charts/openfga-operator/Chart.yaml

+4-16
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,9 @@
11
apiVersion: v2
22
name: openfga-operator
3-
description: A Helm chart for Kubernetes
4-
# A chart can be either an 'application' or a 'library' chart.
5-
#
6-
# Application charts are a collection of templates that can be packaged into versioned archives
7-
# to be deployed.
8-
#
9-
# Library charts provide useful utilities or functions for the chart developer. They're included as
10-
# a dependency of application charts to inject those utilities and functions into the rendering
11-
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
3+
description: |
4+
A Helm chart for deploying the OpenFGA Operator on Kubernetes.
5+
The OpenFGA Operator manages and automates the deployment,
6+
scaling, and maintenance of OpenFGA instances.
127
type: application
13-
# This is the chart version. This version number should be incremented each time you make changes
14-
# to the chart and its templates, including the app version.
15-
# Versions are expected to follow Semantic Versioning (https://semver.org/)
168
version: 0.1.0
17-
# This is the version number of the application being deployed. This version number should be
18-
# incremented each time you make changes to the application. Versions are not expected to
19-
# follow Semantic Versioning. They should reflect the version the application is using.
20-
# It is recommended to use it with quotes.
219
appVersion: "0.1.0"

charts/openfga-operator/values.yaml

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,52 @@
1+
# Configuration for the OpenFGA Operator Controller Manager
12
controllerManager:
3+
# URL of the OpenFGA API
24
openFgaUrl: 'http://openfga.default.svc.cluster.local:8080'
5+
# API token for accessing the OpenFGA API using preshared keys.
36
openFgaApiToken: foobar
7+
48
manager:
9+
# Arguments to pass to the controller manager
510
args:
611
- --leader-elect
712
- --health-probe-bind-address=:8081
813
- --metrics-bind-address=0
14+
15+
# Security context for the controller manager container
916
containerSecurityContext:
1017
allowPrivilegeEscalation: false
1118
capabilities:
1219
drop:
1320
- ALL
21+
22+
# Image configuration for the controller manager
1423
image:
1524
repository: ghcr.io/3schwartz/openfga-operator
1625
tag: 9714871740
26+
27+
# Resource requests and limits for the controller manager container
1728
resources:
1829
limits:
1930
cpu: 500m
2031
memory: 128Mi
2132
requests:
2233
cpu: 10m
2334
memory: 64Mi
35+
36+
# Number of replicas for the controller manager
2437
replicas: 1
38+
39+
# Service account configuration for the controller manager
2540
serviceAccount:
2641
annotations: {}
27-
extraEnvVars: []
2842

43+
# Additional environment variables for the controller manager container
44+
extraEnvVars: []
45+
46+
# Kubernetes cluster domain
2947
kubernetesClusterDomain: cluster.local
48+
49+
# Metrics service configuration
3050
metricsService:
3151
ports:
3252
- name: http

0 commit comments

Comments
 (0)