Compare commits
12 commits
Author | SHA1 | Date | |
---|---|---|---|
|
e890358e10 | ||
|
cccf8e5396 | ||
![]() |
da2f8b2472 | ||
![]() |
d94ce977d3 | ||
![]() |
92ff751a4d | ||
![]() |
7959103b0e | ||
![]() |
68a5568447 | ||
![]() |
07e65f2c4e | ||
![]() |
5ad0dd06ca | ||
![]() |
12942a25f0 | ||
![]() |
61c97590fc | ||
![]() |
04b8e546a8 |
40
.drone.yml
Normal file
40
.drone.yml
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: submodules
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
|
||||||
|
- name: build
|
||||||
|
image: alpine/helm
|
||||||
|
volumes:
|
||||||
|
- name: result
|
||||||
|
path: /output
|
||||||
|
commands:
|
||||||
|
- helm lint --set redis.enabled=false
|
||||||
|
- helm package -d chart .
|
||||||
|
- mv chart/glitchtip*.tgz /output/glitchtip.tgz
|
||||||
|
|
||||||
|
- name: upload
|
||||||
|
image: curlimages/curl:latest
|
||||||
|
environment:
|
||||||
|
GIT_HOST: git.kurocon.nl
|
||||||
|
GIT_PACKAGE_OWNER: KuroNET
|
||||||
|
GIT_USER:
|
||||||
|
from_secret: git_username
|
||||||
|
GIT_TOKEN:
|
||||||
|
from_secret: git_password_or_token
|
||||||
|
volumes:
|
||||||
|
- name: result
|
||||||
|
path: /output
|
||||||
|
commands:
|
||||||
|
- curl --user $GIT_USER:$GIT_TOKEN -X POST --upload-file /output/glitchtip.tgz https://$GIT_HOST/api/packages/{$GIT_PACKAGE_OWNER}/helm/api/charts
|
||||||
|
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: result
|
||||||
|
temp: {}
|
2
.gitmodules
vendored
2
.gitmodules
vendored
|
@ -1,3 +1,3 @@
|
||||||
[submodule "django-helm-chart"]
|
[submodule "django-helm-chart"]
|
||||||
path = django-helm-chart
|
path = django-helm-chart
|
||||||
url = https://gitlab.com/burke-software/django-helm-chart.git
|
url = https://git.kurocon.nl/KuroNET/django-helm-chart.git
|
||||||
|
|
9
CHANGELOG
Normal file
9
CHANGELOG
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# Unreleased
|
||||||
|
|
||||||
|
# 4.0.0
|
||||||
|
|
||||||
|
- (Breaking) Rename value preInstall to migrationJob
|
||||||
|
- The migration job now runs the migrate script which includes pgpartition. This should help ensure it runs more often as a failsafe should celery fail.
|
||||||
|
- Add some support for volume mounts, not well tested
|
||||||
|
- Started this changelog
|
||||||
|
- Updated chart dependencies to latest versions
|
|
@ -1,9 +1,9 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 15.2.5
|
version: 15.5.16
|
||||||
- name: redis
|
- name: redis
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 19.1.2
|
version: 19.6.1
|
||||||
digest: sha256:84329ca7231a8a4b2569babdf367378599304c432ea17fc00a9ccbb9c1811353
|
digest: sha256:39ccb3c76f7a8587ce6623d8b563cefcb3c63a7376768a901ae8092ca4fd9b82
|
||||||
generated: "2024-04-19T09:00:35.50155423-04:00"
|
generated: "2024-07-15T16:16:16.67406353-04:00"
|
||||||
|
|
|
@ -14,11 +14,11 @@ type: application
|
||||||
|
|
||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
version: 3.0.3
|
version: 4.0.1
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application.
|
# incremented each time you make changes to the application.
|
||||||
appVersion: 4.0.6
|
appVersion: 4.1.1
|
||||||
|
|
||||||
icon: https://glitchtip.gitlab.io/glitchtip-helm-chart/icon.svg
|
icon: https://glitchtip.gitlab.io/glitchtip-helm-chart/icon.svg
|
||||||
|
|
||||||
|
|
Binary file not shown.
BIN
charts/postgresql-15.5.16.tgz
Normal file
BIN
charts/postgresql-15.5.16.tgz
Normal file
Binary file not shown.
Binary file not shown.
BIN
charts/redis-19.6.1.tgz
Normal file
BIN
charts/redis-19.6.1.tgz
Normal file
Binary file not shown.
|
@ -1 +1 @@
|
||||||
Subproject commit 0d5921af5e3637b1b3f1fe3108bcd2d7a2e9d0f2
|
Subproject commit 4c7256e5c96d18e4f187074354690a11d65b57fe
|
|
@ -1,7 +1,7 @@
|
||||||
# Default values for glitchtip.
|
# Default values for glitchtip.
|
||||||
image:
|
image:
|
||||||
repository: glitchtip/glitchtip
|
repository: glitchtip/glitchtip
|
||||||
tag: v4.0.6
|
tag: v4.1.1
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
@ -19,8 +19,9 @@ env:
|
||||||
# DATABASE_URL: Specify if using external postgres (not managed by this chart)
|
# DATABASE_URL: Specify if using external postgres (not managed by this chart)
|
||||||
# REDIS_URL: Specify if using external redis (not managed by this chart)
|
# REDIS_URL: Specify if using external redis (not managed by this chart)
|
||||||
|
|
||||||
preInstall:
|
migrationJob:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
command: ["bin/run-migrate.sh"]
|
||||||
activeDeadlineSeconds: 900
|
activeDeadlineSeconds: 900
|
||||||
|
|
||||||
web:
|
web:
|
||||||
|
@ -91,7 +92,7 @@ worker:
|
||||||
minReplicas: 1
|
minReplicas: 1
|
||||||
maxReplicas: 10
|
maxReplicas: 10
|
||||||
targetCPU: 100
|
targetCPU: 100
|
||||||
# targetMemory: 80
|
# targetMemory: 100
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 60
|
periodSeconds: 60
|
||||||
|
|
Loading…
Reference in a new issue