Skip to content

Commit dbc34f2

Browse files
authored
Add help for local development (#7)
1 parent fc6b546 commit dbc34f2

File tree

8 files changed

+106
-0
lines changed

8 files changed

+106
-0
lines changed
File renamed without changes.

development/example-deployment.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
labels:
5+
openfga-store: documents
6+
openfga-auth-model-version: "1.1.2"
7+
app: annotated-curl
8+
name: annotated-curl
9+
spec:
10+
replicas: 1
11+
selector:
12+
matchLabels:
13+
app: annotated-curl
14+
template:
15+
metadata:
16+
labels:
17+
app: annotated-curl
18+
spec:
19+
containers:
20+
- name: main
21+
image: curlimages/curl:8.7.1
22+
command: ["sleep", "9999999"]
23+
env:
24+
- name: "foo"
25+
value: "bar"

development/helm/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.tgz

development/helm/.helmignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/

development/helm/Chart.lock

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
dependencies:
2+
- name: openfga
3+
repository: https://openfga.github.io/helm-charts
4+
version: 0.2.2
5+
- name: postgresql
6+
repository: https://charts.bitnami.com/bitnami
7+
version: 15.2.5
8+
digest: sha256:b8e1f474e516c5c5c9952b703ff1e00e452584f05cff2b774db0e09f59e583b2
9+
generated: "2024-04-11T14:50:08.670167+02:00"

development/helm/Chart.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
apiVersion: v2
2+
name: permissions
3+
description: A Helm chart for Kubernetes
4+
type: application
5+
version: 0.1.0
6+
appVersion: "1.16.0"
7+
dependencies:
8+
- name: openfga
9+
version: "0.2.2"
10+
repository: "https://openfga.github.io/helm-charts"
11+
- name: postgresql
12+
version: "15.2.5"
13+
repository: https://charts.bitnami.com/bitnami
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
kind: Secret
3+
apiVersion: v1
4+
metadata:
5+
name: openfga
6+
stringData:
7+
uri: postgres://postgres:[email protected]:5432/openfga?sslmode=disable

development/helm/values.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
openfga:
2+
replicaCount: 1
3+
datastore:
4+
engine: postgres
5+
uriSecret: openfga
6+
# uri: postgres://postgres:[email protected]:5432/openfga?sslmode=disable
7+
postgresql:
8+
enabled: false
9+
auth:
10+
postgresPassword: password
11+
database: postgres
12+
ingress:
13+
enabled: true
14+
hosts:
15+
- host: localhost
16+
paths:
17+
- path: /
18+
pathType: Prefix
19+
authn:
20+
method: preshared
21+
extraEnvVars:
22+
- name: OPENFGA_AUTHN_PRESHARED_KEYS
23+
value: foobar
24+
25+
postgresql:
26+
auth:
27+
postgresPassword: password
28+
database: openfga

0 commit comments

Comments
 (0)