Skip to content

Commit

Permalink
Merge pull request #33 from J0sh0nat0r/feat/k8s-1.25-support
Browse files Browse the repository at this point in the history
feat(soketi)!: Support k8s 1.25
  • Loading branch information
rennokki authored Aug 16, 2023
2 parents 5fe7531 + fa3d815 commit bd9b515
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions charts/soketi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ 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: 1.0.2
version: 2.0.0

# 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.
appVersion: 1.4.0
appVersion: 1.6.0
4 changes: 2 additions & 2 deletions charts/soketi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Containerize & Orchestrate your soketi application with this simple Helm chart.

## 🛑 Requirements

- Kubernetes v1.19+
- Kubernetes v1.23+

## 🚀 Installation

Expand All @@ -25,7 +25,7 @@ Install the soketi chart:
```bash
$ helm upgrade soketi \
--install \
--version=1.0.2 \
--version=2.0.0 \
soketi/soketi
```

Expand Down
2 changes: 1 addition & 1 deletion charts/soketi/templates/bullmq-pdb.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if and (.Values.bullExporter.enabled) (gt (.Values.bullExporter.replicaCount | int) 1) -}}
apiVersion: policy/v1beta1
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion charts/soketi/templates/hpa.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.autoscaling.enabled }}
apiVersion: autoscaling/v2beta2
apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "soketi.fullname" . }}
Expand Down
2 changes: 1 addition & 1 deletion charts/soketi/templates/pdb.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if or (and .Values.autoscaling.enabled (gt (.Values.autoscaling.minReplicas | int) 1)) (gt (.Values.replicaCount | int) 1) -}}
apiVersion: policy/v1beta1
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
labels:
Expand Down
4 changes: 2 additions & 2 deletions charts/soketi/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ app:
image:
repository: quay.io/soketi/soketi
pullPolicy: IfNotPresent
tag: "1.4-16-alpine"
tag: "1.6-16-debian"
# You can use distroless to avoid Remote Code Execution attacks in-cluster.
# https://github.com/soketi/soketi/pull/178
# tag: "1.3-16-distroless"
# tag: "1.6-16-distroless"

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

0 comments on commit bd9b515

Please sign in to comment.