File tree 2 files changed +25
-17
lines changed
2 files changed +25
-17
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
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.
12
7
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/)
16
8
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.
21
9
appVersion : " 0.1.0"
Original file line number Diff line number Diff line change
1
+ # Configuration for the OpenFGA Operator Controller Manager
1
2
controllerManager :
3
+ # URL of the OpenFGA API
2
4
openFgaUrl : ' http://openfga.default.svc.cluster.local:8080'
5
+ # API token for accessing the OpenFGA API using preshared keys.
3
6
openFgaApiToken : foobar
7
+
4
8
manager :
9
+ # Arguments to pass to the controller manager
5
10
args :
6
11
- --leader-elect
7
12
- --health-probe-bind-address=:8081
8
13
- --metrics-bind-address=0
14
+
15
+ # Security context for the controller manager container
9
16
containerSecurityContext :
10
17
allowPrivilegeEscalation : false
11
18
capabilities :
12
19
drop :
13
20
- ALL
21
+
22
+ # Image configuration for the controller manager
14
23
image :
15
24
repository : ghcr.io/3schwartz/openfga-operator
16
25
tag : 9714871740
26
+
27
+ # Resource requests and limits for the controller manager container
17
28
resources :
18
29
limits :
19
30
cpu : 500m
20
31
memory : 128Mi
21
32
requests :
22
33
cpu : 10m
23
34
memory : 64Mi
35
+
36
+ # Number of replicas for the controller manager
24
37
replicas : 1
38
+
39
+ # Service account configuration for the controller manager
25
40
serviceAccount :
26
41
annotations : {}
27
- extraEnvVars : []
28
42
43
+ # Additional environment variables for the controller manager container
44
+ extraEnvVars : []
45
+
46
+ # Kubernetes cluster domain
29
47
kubernetesClusterDomain : cluster.local
48
+
49
+ # Metrics service configuration
30
50
metricsService :
31
51
ports :
32
52
- name : http
You can’t perform that action at this time.
0 commit comments