Skip to content

Commit

Permalink
Merge pull request #4 from olesrid/hotfix/binary-path-v3.2.1
Browse files Browse the repository at this point in the history
Hotfix/binary path v3.2.1
  • Loading branch information
Victor Castell authored Mar 15, 2023
2 parents e1e2f5c + 69d95d3 commit 7105321
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dkron/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ 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.0.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
Expand Down
2 changes: 1 addition & 1 deletion dkron/templates/agent-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
{{- toYaml .Values.agent.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["./dkron"]
command: ["/usr/local/bin/dkron"]
args:
- "agent"
- "--config=/etc/dkron/dkron.yaml"
Expand Down
2 changes: 1 addition & 1 deletion dkron/templates/server-pdr.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: policy/v1beta1
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: {{ include "dkron.fullname" . }}
Expand Down
2 changes: 1 addition & 1 deletion dkron/templates/server-statefulSet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
{{- toYaml .Values.server.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command: ["./dkron"]
command: ["/usr/local/bin/dkron"]
args:
- "agent"
- "--server"
Expand Down
2 changes: 1 addition & 1 deletion dkron/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ server:

service:
type: ClusterIP
port: 80
port: 8080

resources:
{}
Expand Down

0 comments on commit 7105321

Please sign in to comment.