Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
rennokki committed Jun 2, 2021
1 parent e01fdfa commit ab92f47
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/echo-server/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: 2.0.2
version: 2.1.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: 5.3.1
appVersion: 5.4.0
2 changes: 1 addition & 1 deletion charts/echo-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Install the Echo Server chart:
```bash
$ helm upgrade echo-server \
--install \
--version=2.0.2 \
--version=2.1.0 \
soketi/echo-server
```

Expand Down
22 changes: 22 additions & 0 deletions charts/echo-server/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,28 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.name
livenessProbe:
httpGet:
path: /health
port: 6001
httpHeaders:
- name: X-Kube-Healthcheck
value: "Yes"
initialDelaySeconds: 5
periodSeconds: 1
failureThreshold: 1
successThreshold: 1
readinessProbe:
httpGet:
path: /ready
port: 6001
httpHeaders:
- name: X-Kube-Healthcheck
value: "Yes"
initialDelaySeconds: 5
periodSeconds: 1
failureThreshold: 1
successThreshold: 1
resources:
{{- toYaml .Values.networkWatcher.resources | nindent 12 }}
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/echo-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ app:
image:
repository: soketi/echo-server
pullPolicy: IfNotPresent
tag: "5.3.1-14-alpine"
tag: "5.4.0-14-alpine"

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

0 comments on commit ab92f47

Please sign in to comment.