parent
14d6a8475d
commit
8393c8afc8
@ -0,0 +1,26 @@ |
|||||||
|
langflow: |
||||||
|
backend: |
||||||
|
resources: |
||||||
|
requests: |
||||||
|
cpu: 500m |
||||||
|
memory: 1Gi |
||||||
|
limits: |
||||||
|
cpu: 1000m |
||||||
|
memory: 2Gi |
||||||
|
frontend: |
||||||
|
resources: |
||||||
|
requests: |
||||||
|
cpu: 300m |
||||||
|
memory: 512Mi |
||||||
|
limits: |
||||||
|
cpu: 500m |
||||||
|
memory: 1Gi |
||||||
|
postgresql: |
||||||
|
primary: |
||||||
|
resources: |
||||||
|
requests: |
||||||
|
cpu: 250m |
||||||
|
memory: 512Mi |
||||||
|
limits: |
||||||
|
cpu: 500m |
||||||
|
memory: 1Gi |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
postgresql: |
||||||
|
primary: |
||||||
|
persistence: |
||||||
|
size: 5Gi |
||||||
|
storageClass: "" |
||||||
@ -0,0 +1,92 @@ |
|||||||
|
#version: langflow-ide, 0.1.0 |
||||||
|
langflow: |
||||||
|
backend: |
||||||
|
replicaCount: 1 |
||||||
|
image: |
||||||
|
repository: langflowai/langflow-backend |
||||||
|
tag: "v1.1.1" |
||||||
|
resources: |
||||||
|
requests: |
||||||
|
cpu: 0.5 |
||||||
|
memory: 1Gi |
||||||
|
nodeSelector: {} |
||||||
|
tolerations: [] |
||||||
|
backendOnly: true |
||||||
|
env: |
||||||
|
- name: LANGFLOW_PORT |
||||||
|
value: "7860" |
||||||
|
- name: LANGFLOW_LOG_LEVEL |
||||||
|
value: "info" |
||||||
|
- name: LANGFLOW_AUTO_LOGIN |
||||||
|
value: "True" |
||||||
|
- name: LANGFLOW_SUPERUSER |
||||||
|
value: "admin" |
||||||
|
- name: LANGFLOW_SUPERUSER_PASSWORD |
||||||
|
value: "Paasupadmin2025!" |
||||||
|
externalDatabase: |
||||||
|
enabled: true |
||||||
|
driver: |
||||||
|
value: "postgresql" |
||||||
|
host: |
||||||
|
value: "demo01-langflow-ide-postgresql-service" |
||||||
|
port: |
||||||
|
value: "5432" |
||||||
|
database: |
||||||
|
value: "langflow-db" |
||||||
|
user: |
||||||
|
value: "langflow" |
||||||
|
password: |
||||||
|
valueFrom: |
||||||
|
secretKeyRef: |
||||||
|
key: "password" |
||||||
|
name: "demo01-langflow-infisicalsecret" |
||||||
|
sqlite: |
||||||
|
enabled: false |
||||||
|
probe: |
||||||
|
failureThreshold: 3 |
||||||
|
periodSeconds: 10 |
||||||
|
timeoutSeconds: 5 |
||||||
|
initialDelaySeconds: 5 |
||||||
|
frontend: |
||||||
|
enabled: true |
||||||
|
replicaCount: 1 |
||||||
|
image: |
||||||
|
repository: langflowai/langflow-frontend |
||||||
|
tag: "v1.1.1" |
||||||
|
resources: |
||||||
|
requests: |
||||||
|
cpu: 0.3 |
||||||
|
memory: 512Mi |
||||||
|
nodeSelector: {} |
||||||
|
tolerations: [] |
||||||
|
|
||||||
|
ingress: |
||||||
|
enabled: true |
||||||
|
annotations: |
||||||
|
cert-manager.io/cluster-issuer: "root-ca-issuer" |
||||||
|
cert-manager.io/duration: 8760h |
||||||
|
cert-manager.io/renew-before: 720h |
||||||
|
konghq.com/plugins: oidc-plugin, keycloak-authz-plugin |
||||||
|
hosts: |
||||||
|
- host: "demo01-langflow.gke.paasup.io" |
||||||
|
paths: |
||||||
|
- path: / |
||||||
|
pathType: ImplementationSpecific |
||||||
|
servicePort: 7860 |
||||||
|
tls: |
||||||
|
- hosts: |
||||||
|
- "demo01-langflow.gke.paasup.io" |
||||||
|
secretName: "demo01-langflow-tls-secret" |
||||||
|
|
||||||
|
postgresql: |
||||||
|
enabled: true |
||||||
|
fullnameOverride: "demo01-langflow-ide-postgresql-service" |
||||||
|
auth: |
||||||
|
username: "langflow" |
||||||
|
password: "" |
||||||
|
database: "langflow-db" |
||||||
|
existingSecret: "demo01-langflow-infisicalsecret" |
||||||
|
primary: |
||||||
|
persistence: |
||||||
|
size: 5Gi |
||||||
|
storageClass: "" |
||||||
Loading…
Reference in new issue