Skip to content

Commit

Permalink
fix: fix case sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfaircloth committed Jun 7, 2024
1 parent 445df6b commit 4265fee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/s3proxy/templates/daemonset.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if eq .Values.DeploymentMode "DaemonSet" }}
{{ if eq .Values.deploymentMode "DaemonSet" }}
apiVersion: apps/v1
kind: DaemonSet
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/s3proxy/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ if eq .Values.DeploymentMode "Deployment" }}
{{ if eq .Values.deploymentMode "Deployment" }}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/s3proxy/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Default values for s3proxy.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
DeploymentMode: Deployment
deploymentMode: Deployment
replicaCount: 1
labels: {}
podLabels: {}
Expand Down

0 comments on commit 4265fee

Please sign in to comment.