This commit is contained in:
2024-08-31 07:19:33 -05:00
parent 1febc6915e
commit 0f908a1460

View File

@@ -1,127 +1,131 @@
planeVersion: stable plane:
planeVersion: stable
dockerRegistry: dockerRegistry:
enabled: false enabled: false
host: "index.docker.io/v1/" host: "index.docker.io/v1/"
loginid: makeplane loginid: makeplane
password: "" password: ""
ingress: ingress:
enabled: true enabled: true
appHost: "plane.durp.info" appHost: "plane.durp.info"
minioHost: "plane-minio.durp.info" minioHost: "plane-minio.durp.info"
ingressClass: "traefik" ingressClass: "nginx"
ingress_annotations: {
"nginx.ingress.kubernetes.io/proxy-body-size": "5m",
}
# SSL Configuration - Valid only if ingress.enabled is true # SSL Configuration - Valid only if ingress.enabled is true
ssl: ssl:
createIssuer: false createIssuer: false
issuer: "http" # Allowed : cloudflare, digitalocean, http issuer: "http" # Allowed : cloudflare, digitalocean, http
token: "" # not required for http token: "" # not required for http
server: https://acme-v02.api.letsencrypt.org/directory server: https://acme-v02.api.letsencrypt.org/directory
email: plane@example.com email: plane@example.com
generateCerts: false generateCerts: false
redis: redis:
local_setup: true local_setup: true
image: valkey/valkey:7.2.5-alpine image: valkey/valkey:7.2.5-alpine
servicePort: 6379 servicePort: 6379
storageClass: longhorn storageClass: longhorn
volumeSize: 1Gi volumeSize: 1Gi
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
assign_cluster_ip: false assign_cluster_ip: false
postgres: postgres:
local_setup: true local_setup: true
image: postgres:15.5-alpine image: postgres:15.5-alpine
servicePort: 5432 servicePort: 5432
cliConnectPort: "" cliConnectPort: ""
storageClass: longhorn storageClass: longhorn
volumeSize: 5Gi volumeSize: 5Gi
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
assign_cluster_ip: false assign_cluster_ip: false
minio: minio:
image: minio/minio:latest image: minio/minio:latest
local_setup: true local_setup: true
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
root_password: password root_password: password
root_user: admin root_user: admin
storageClass: longhorn storageClass: longhorn
volumeSize: 5Gi volumeSize: 5Gi
assign_cluster_ip: true assign_cluster_ip: true
web: web:
replicas: 1 replicas: 1
memoryLimit: 1000Mi memoryLimit: 1000Mi
cpuLimit: 500m cpuLimit: 500m
image: makeplane/plane-frontend image: makeplane/plane-frontend
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
assign_cluster_ip: true assign_cluster_ip: true
space: space:
replicas: 1 replicas: 1
memoryLimit: 1000Mi memoryLimit: 1000Mi
cpuLimit: 500m cpuLimit: 500m
image: makeplane/plane-space image: makeplane/plane-space
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
assign_cluster_ip: true assign_cluster_ip: true
admin: admin:
replicas: 1 replicas: 1
memoryLimit: 1000Mi memoryLimit: 1000Mi
cpuLimit: 500m cpuLimit: 500m
image: makeplane/plane-admin image: makeplane/plane-admin
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
assign_cluster_ip: true assign_cluster_ip: true
api: api:
replicas: 1 replicas: 1
memoryLimit: 1000Mi memoryLimit: 1000Mi
cpuLimit: 500m cpuLimit: 500m
image: makeplane/plane-backend image: makeplane/plane-backend
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
assign_cluster_ip: false assign_cluster_ip: false
worker: worker:
replicas: 1 replicas: 1
memoryLimit: 1000Mi memoryLimit: 1000Mi
cpuLimit: 500m cpuLimit: 500m
image: makeplane/plane-backend image: makeplane/plane-backend
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
beatworker: beatworker:
replicas: 1 replicas: 1
memoryLimit: 1000Mi memoryLimit: 1000Mi
cpuLimit: 500m cpuLimit: 500m
image: makeplane/plane-backend image: makeplane/plane-backend
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
env: env:
pgdb_username: plane pgdb_username: plane
pgdb_password: plane pgdb_password: plane
pgdb_name: plane pgdb_name: plane
pgdb_remote_url: "" #INCASE OF REMOTE PG DB URL ONLY pgdb_remote_url: "" #INCASE OF REMOTE PG DB URL ONLY
# NEXT_PUBLIC_DEPLOY_URL: "" # NEXT_PUBLIC_DEPLOY_URL: ""
# REDIS # REDIS
remote_redis_url: "" #INCASE OF REMOTE REDIS ONLY remote_redis_url: "" #INCASE OF REMOTE REDIS ONLY
# POSTGRES DB VALUES # POSTGRES DB VALUES
# DATA STORE # DATA STORE
docstore_bucket: "uploads" docstore_bucket: "uploads"
doc_upload_size_limit: "5242880" # 5MB doc_upload_size_limit: "5242880" # 5MB
# REQUIRED IF MINIO LOCAL SETUP IS FALSE # REQUIRED IF MINIO LOCAL SETUP IS FALSE
aws_access_key: "" aws_access_key: ""
aws_secret_access_key: "" aws_secret_access_key: ""
aws_region: "" aws_region: ""
aws_s3_endpoint_url: "" aws_s3_endpoint_url: ""
secret_key: "60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5" secret_key: "60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5"
sentry_dsn: "" sentry_dsn: ""
sentry_environment: "" sentry_environment: ""
cors_allowed_origins: "" cors_allowed_origins: ""
default_cluster_domain: cluster.local default_cluster_domain: cluster.local