Merge: resolve conflict keeping imagePullSecrets and correct image tags
This commit is contained in:
commit
fa9956419b
@ -9,13 +9,11 @@ backend:
|
|||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/my-apps/tasko-backend
|
repository: harbor.dvirlabs.com/my-apps/tasko-backend
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: "latest"
|
tag: "master-cf7f3ee"
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 8000
|
port: 8000
|
||||||
targetPort: 8000
|
targetPort: 8000
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 100m
|
cpu: 100m
|
||||||
@ -23,22 +21,18 @@ backend:
|
|||||||
limits:
|
limits:
|
||||||
cpu: 500m
|
cpu: 500m
|
||||||
memory: 512Mi
|
memory: 512Mi
|
||||||
|
|
||||||
env:
|
env:
|
||||||
PYTHONUNBUFFERED: "1"
|
PYTHONUNBUFFERED: "1"
|
||||||
ENVIRONMENT: "production"
|
ENVIRONMENT: "production"
|
||||||
GOOGLE_REDIRECT_URI: "https://api-tasko.dvirlabs.com/auth/google/callback"
|
GOOGLE_REDIRECT_URI: "https://api-tasko.dvirlabs.com/auth/google/callback"
|
||||||
FRONTEND_URL: "https://tasko.dvirlabs.com"
|
FRONTEND_URL: "https://tasko.dvirlabs.com"
|
||||||
|
|
||||||
# OAuth Configuration (stored as secrets)
|
# OAuth Configuration (stored as secrets)
|
||||||
oauth:
|
oauth:
|
||||||
google:
|
google:
|
||||||
clientId: "672182384838-vob26vd0qhmf0g9mru4u4sibkqre0rfa.apps.googleusercontent.com"
|
clientId: "672182384838-vob26vd0qhmf0g9mru4u4sibkqre0rfa.apps.googleusercontent.com"
|
||||||
clientSecret: "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"
|
clientSecret: "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"
|
||||||
|
|
||||||
# Session secret for signing cookies (generate with: python -c "import secrets; print(secrets.token_hex(32))")
|
# Session secret for signing cookies (generate with: python -c "import secrets; print(secrets.token_hex(32))")
|
||||||
sessionSecret: "7f8a9b6c5d4e3f2a1b0c9d8e7f6a5b4c3d2e1f0a9b8c7d6e5f4a3b2c1d0e9f8a"
|
sessionSecret: "7f8a9b6c5d4e3f2a1b0c9d8e7f6a5b4c3d2e1f0a9b8c7d6e5f4a3b2c1d0e9f8a"
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
className: "traefik"
|
className: "traefik"
|
||||||
@ -55,7 +49,6 @@ backend:
|
|||||||
- secretName: api-tasko-tls
|
- secretName: api-tasko-tls
|
||||||
hosts:
|
hosts:
|
||||||
- api-tasko.dvirlabs.com
|
- api-tasko.dvirlabs.com
|
||||||
|
|
||||||
# Frontend configuration
|
# Frontend configuration
|
||||||
frontend:
|
frontend:
|
||||||
name: frontend
|
name: frontend
|
||||||
@ -63,16 +56,13 @@ frontend:
|
|||||||
image:
|
image:
|
||||||
repository: harbor.dvirlabs.com/my-apps/tasko-frontend
|
repository: harbor.dvirlabs.com/my-apps/tasko-frontend
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
tag: "latest"
|
tag: "master-cf7f3ee"
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 80
|
port: 80
|
||||||
targetPort: 80
|
targetPort: 80
|
||||||
|
|
||||||
env:
|
env:
|
||||||
VITE_API_URL: "https://api-tasko.dvirlabs.com"
|
VITE_API_URL: "https://api-tasko.dvirlabs.com"
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 50m
|
cpu: 50m
|
||||||
@ -80,7 +70,6 @@ frontend:
|
|||||||
limits:
|
limits:
|
||||||
cpu: 200m
|
cpu: 200m
|
||||||
memory: 256Mi
|
memory: 256Mi
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
enabled: true
|
enabled: true
|
||||||
className: "traefik"
|
className: "traefik"
|
||||||
@ -97,7 +86,6 @@ frontend:
|
|||||||
- secretName: tasko-tls
|
- secretName: tasko-tls
|
||||||
hosts:
|
hosts:
|
||||||
- tasko.dvirlabs.com
|
- tasko.dvirlabs.com
|
||||||
|
|
||||||
# PostgreSQL configuration
|
# PostgreSQL configuration
|
||||||
postgres:
|
postgres:
|
||||||
name: db
|
name: db
|
||||||
@ -105,22 +93,18 @@ postgres:
|
|||||||
repository: postgres
|
repository: postgres
|
||||||
tag: "16-alpine"
|
tag: "16-alpine"
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
user: tasko_user
|
user: tasko_user
|
||||||
password: tasko_password
|
password: tasko_password
|
||||||
database: tasko_db
|
database: tasko_db
|
||||||
port: 5432
|
port: 5432
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
port: 5432
|
port: 5432
|
||||||
targetPort: 5432
|
targetPort: 5432
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
enabled: true
|
enabled: true
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 8Gi
|
size: 8Gi
|
||||||
|
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
cpu: 100m
|
cpu: 100m
|
||||||
@ -128,10 +112,9 @@ postgres:
|
|||||||
limits:
|
limits:
|
||||||
cpu: 500m
|
cpu: 500m
|
||||||
memory: 512Mi
|
memory: 512Mi
|
||||||
|
|
||||||
# Ingress configuration
|
# Ingress configuration
|
||||||
ingress:
|
ingress:
|
||||||
enabled: false # Individual frontend/backend ingress resources handle routing instead
|
enabled: false # Individual frontend/backend ingress resources handle routing instead
|
||||||
className: "traefik"
|
className: "traefik"
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
||||||
@ -145,7 +128,6 @@ ingress:
|
|||||||
- secretName: tasko-tls
|
- secretName: tasko-tls
|
||||||
hosts:
|
hosts:
|
||||||
- tasko.dvirlabs.com
|
- tasko.dvirlabs.com
|
||||||
|
|
||||||
# Service Account configuration
|
# Service Account configuration
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
create: true
|
create: true
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user