File tree 2 files changed +20
-16
lines changed
2 files changed +20
-16
lines changed Original file line number Diff line number Diff line change @@ -8,27 +8,14 @@ service:
8
8
9
9
# Gateway API disabled (using ingress instead)
10
10
gateway :
11
- enabled : false
12
-
13
- # Ingress configuration
14
- ingress :
15
11
enabled : true
16
- className : nginx
17
- annotations :
18
- cert-manager.io/cluster-issuer : selfsigned-issuer
19
- hosts :
20
- - host : example.local
21
- paths :
22
- - path : /
23
- pathType : Prefix
24
- tls :
25
- - secretName : example-cert-tls
26
- hosts :
27
- - example.local
28
12
29
13
# LocalAI configuration
30
14
localai :
31
15
enabled : true
16
+ env :
17
+ CONTEXT_SIZE : " 0"
18
+ THREADS : " 4"
32
19
persistence :
33
20
models :
34
21
enabled : true
Original file line number Diff line number Diff line change
1
+ apiVersion : cert-manager.io/v1
2
+ kind : Certificate
3
+ metadata :
4
+ name : test-cert
5
+ namespace : localai
6
+ spec :
7
+ secretName : test-cert-tls
8
+ duration : 2160h # 90 days
9
+ renewBefore : 360h # 15 days
10
+ commonName : test.local
11
+ dnsNames :
12
+ - test.local
13
+ issuerRef :
14
+ name : selfsigned-issuer
15
+ kind : ClusterIssuer
16
+ group : cert-manager.io
17
+
You can’t perform that action at this time.
0 commit comments