Skip to content

Commit

Permalink
Update anteon self hosted to version 2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed Aug 29, 2024
1 parent fc48e9c commit 9a8ef9d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/anteon/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ type: application
# 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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 2.6.2
version: 2.6.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "2.6.2"
appVersion: "2.6.3"

keywords:
- ebpf
Expand Down
1 change: 1 addition & 0 deletions charts/anteon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ The following table lists the configurable parameters of the Anteon chart and th
| `alazbackend.replicas` | Number of replicas for the Alaz Backend service. | integer | `3` |
| `alazbackend.celeryBeatReplicas` | Number of replicas for the Alaz Backend Celery Beat service. | integer | `1` |
| `alazbackend.celeryWorkerReplicas` | Number of replicas for the Alaz Backend Celery Worker service. | integer | `2` |
| `alazbackend.requestWriterReplicas` | Number of replicas for the Alaz Backend Request Writer service. | integer | `1` |
| `backend.replicas` | Number of replicas for the Backend service. | integer | `3` |
| `backend.celeryBeatReplicas` | Number of replicas for the Backend Celery Beat service. | integer | `1` |
| `backend.celeryWorkerReplicas` | Number of replicas for the Backend Celery Worker service. | integer | `1` |
Expand Down
34 changes: 34 additions & 0 deletions charts/anteon/templates/alaz-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,37 @@ spec:
resources: {}
restartPolicy: Always
status: {}
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
service: alaz-backend-request-writer
name: alaz-backend-request-writer
spec:
replicas: {{ .Values.alazBackend.requestWriterReplicas }}
selector:
matchLabels:
service: alaz-backend-request-writer
strategy: {}
template:
metadata:
labels:
service: alaz-backend-request-writer
spec:
initContainers:
- name: check-dependencies
image: {{ .Values.images.initContainerBusybox }}
command: ['sh', '-c', 'until nc -z -w4 alaz-backend 8008 && nc -z rabbitmq 5672; do echo waiting for dependencies; sleep 1; done;']
containers:
- args:
- /workspace/start_scripts/start_request_writer.sh
envFrom:
- configMapRef:
name: env
image: {{ .Values.images.alazBackend }}
name: alaz-backend-request-writer
imagePullPolicy: IfNotPresent
resources: {}
restartPolicy: Always
status: {}
5 changes: 3 additions & 2 deletions charts/anteon/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ alazBackend:
replicas: 3
celeryBeatReplicas: 1
celeryWorkerReplicas: 2
requestWriterReplicas: 1

backend:
replicas: 3
Expand Down Expand Up @@ -112,9 +113,9 @@ seaweedfs:
replicas: 1

images:
alazBackend: ddosify/selfhosted_alaz_backend:2.3.7
alazBackend: ddosify/selfhosted_alaz_backend:2.3.11
backend: ddosify/selfhosted_backend:3.2.9
frontend: ddosify/selfhosted_frontend:4.1.2
frontend: ddosify/selfhosted_frontend:4.1.4
hammer: ddosify/selfhosted_hammer:2.0.0
hammermanager: ddosify/selfhosted_hammermanager:2.0.2
influxdb: influxdb:2.6.1-alpine
Expand Down

0 comments on commit 9a8ef9d

Please sign in to comment.