Compare commits
2 Commits
master
...
service-dj
| Author | SHA1 | Date |
|---|---|---|
|
|
32b92fc915 | 2 weeks ago |
|
|
b197b327c6 | 2 weeks ago |
@ -0,0 +1,18 @@ |
||||
postgresql: |
||||
replicaCount: 1 |
||||
resources: |
||||
requests: |
||||
cpu: 1000m |
||||
memory: 2Gi |
||||
limits: |
||||
cpu: 2000m |
||||
memory: 4Gi |
||||
|
||||
pgpool: |
||||
resources: |
||||
requests: |
||||
cpu: 200m |
||||
memory: 256Mi |
||||
limits: |
||||
cpu: 500m |
||||
memory: 512Mi |
||||
@ -0,0 +1,4 @@ |
||||
persistence: |
||||
enabled: true |
||||
size: 50Gi |
||||
storageClass: "" |
||||
@ -0,0 +1,48 @@ |
||||
#version: postgresql-ha, 11.9.4 |
||||
global: |
||||
imageRegistry: "" |
||||
|
||||
postgresql: |
||||
username: postgres |
||||
existingSecret: "dj1-factcheck-addon-infisicalsecret" |
||||
|
||||
maxConnections: "100" |
||||
sharedPreloadLibraries: "repmgr, pgaudit, pg_stat_statements, pgoutput" |
||||
|
||||
extendedConf: |- |
||||
wal_level = logical |
||||
max_replication_slots = 4 |
||||
max_wal_senders = 4 |
||||
|
||||
replicaCount: 1 |
||||
|
||||
extraEnvVars: |
||||
- name: TZ |
||||
value: Asia/Seoul |
||||
|
||||
resources: |
||||
requests: |
||||
cpu: 100m |
||||
memory: 512Mi |
||||
limits: |
||||
cpu: 500m |
||||
memory: 1024Mi |
||||
|
||||
tolerations: [] |
||||
|
||||
nodeSelector: {} |
||||
|
||||
pgpool: |
||||
existingSecret: "dj1-factcheck-addon-infisicalsecret" |
||||
|
||||
replicaCount: 0 |
||||
|
||||
persistence: |
||||
enabled: true |
||||
storageClass: "" |
||||
size: 1Gi |
||||
|
||||
volumePermissions: |
||||
enabled: true |
||||
podSecurityContext: |
||||
runAsUser: 0 |
||||
@ -0,0 +1,45 @@ |
||||
#version: jupyterlab, 1.0.0 |
||||
image: |
||||
registry: "quay.io" |
||||
repository: "jupyter/scipy-notebook:ubuntu-24.04" |
||||
tag: "" |
||||
|
||||
resources: |
||||
limits: |
||||
cpu: "2000m" |
||||
memory: "4096Mi" |
||||
requests: |
||||
cpu: "500m" |
||||
memory: "1024Mi" |
||||
gpu: "" |
||||
|
||||
jupyterConfig: |
||||
token: "a01056612575*" |
||||
|
||||
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 |
||||
konghq.com/https-redirect-status-code: "301" |
||||
konghq.com/protocols: "https" |
||||
hosts: |
||||
- host: "dj1-factcheck-ets.gke.paasup.io" |
||||
paths: |
||||
- / |
||||
tls: |
||||
- hosts: |
||||
- "dj1-factcheck-ets.gke.paasup.io" |
||||
secretName: "dj1-factcheck-ets-tls-secret" |
||||
|
||||
homeVolume: |
||||
enabled: true |
||||
size: "5Gi" |
||||
storageClassName: "" |
||||
|
||||
dataVolume: |
||||
enabled: true |
||||
size: "5Gi" |
||||
storageClassName: "" |
||||
Loading…
Reference in new issue