Skip to content

Commit bd9b515

Browse files
authored
Merge pull request #33 from J0sh0nat0r/feat/k8s-1.25-support
feat(soketi)!: Support k8s 1.25
2 parents 5fe7531 + fa3d815 commit bd9b515

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

charts/soketi/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.0.2
18+
version: 2.0.0
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
23-
appVersion: 1.4.0
23+
appVersion: 1.6.0

charts/soketi/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Containerize & Orchestrate your soketi application with this simple Helm chart.
99

1010
## 🛑 Requirements
1111

12-
- Kubernetes v1.19+
12+
- Kubernetes v1.23+
1313

1414
## 🚀 Installation
1515

@@ -25,7 +25,7 @@ Install the soketi chart:
2525
```bash
2626
$ helm upgrade soketi \
2727
--install \
28-
--version=1.0.2 \
28+
--version=2.0.0 \
2929
soketi/soketi
3030
```
3131

charts/soketi/templates/bullmq-pdb.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if and (.Values.bullExporter.enabled) (gt (.Values.bullExporter.replicaCount | int) 1) -}}
2-
apiVersion: policy/v1beta1
2+
apiVersion: policy/v1
33
kind: PodDisruptionBudget
44
metadata:
55
labels:

charts/soketi/templates/hpa.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.autoscaling.enabled }}
2-
apiVersion: autoscaling/v2beta2
2+
apiVersion: autoscaling/v2
33
kind: HorizontalPodAutoscaler
44
metadata:
55
name: {{ include "soketi.fullname" . }}

charts/soketi/templates/pdb.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if or (and .Values.autoscaling.enabled (gt (.Values.autoscaling.minReplicas | int) 1)) (gt (.Values.replicaCount | int) 1) -}}
2-
apiVersion: policy/v1beta1
2+
apiVersion: policy/v1
33
kind: PodDisruptionBudget
44
metadata:
55
labels:

charts/soketi/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ app:
1919
image:
2020
repository: quay.io/soketi/soketi
2121
pullPolicy: IfNotPresent
22-
tag: "1.4-16-alpine"
22+
tag: "1.6-16-debian"
2323
# You can use distroless to avoid Remote Code Execution attacks in-cluster.
2424
# https://github.com/soketi/soketi/pull/178
25-
# tag: "1.3-16-distroless"
25+
# tag: "1.6-16-distroless"
2626

2727
# It's recommended to run the server with
2828
# maximum memory that would match the resource limits

0 commit comments

Comments
 (0)