feat: add helm chart for deploying the app on k8s
This commit is contained in:
parent
aaa1eff0fe
commit
cbaa5272ef
13 changed files with 261 additions and 0 deletions
51
deploy/k8s/values.yaml
Normal file
51
deploy/k8s/values.yaml
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
image:
|
||||
pullSecrets: []
|
||||
pullPolicy: IfNotPresent
|
||||
repository: registry.mareshq.com/hq/backoffice/backoffice-api/api
|
||||
tag: latest
|
||||
|
||||
replicas: 2
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
host: example.com
|
||||
className: nginx
|
||||
path: /
|
||||
pathType: Prefix
|
||||
annotations: {}
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
port:
|
||||
name: http
|
||||
number: 80
|
||||
|
||||
resources:
|
||||
limits:
|
||||
cpu: 200m
|
||||
memory: 256Mi
|
||||
requests:
|
||||
cpu: 200m
|
||||
memory: 256Mi
|
||||
|
||||
config:
|
||||
port: 8080
|
||||
databaseURL: ""
|
||||
|
||||
migrations:
|
||||
image:
|
||||
pullSecrets: []
|
||||
pullPolicy: IfNotPresent
|
||||
repository: registry.mareshq.com/hq/backoffice/backoffice-api/migrations
|
||||
tag: latest
|
||||
|
||||
resources:
|
||||
limits:
|
||||
cpu: 100m
|
||||
memory: 128Mi
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 128Mi
|
||||
|
||||
config:
|
||||
databaseURL: ""
|
||||
Reference in a new issue