Skip to content

Commit ea58281

Browse files
committed
Fix case of values
1 parent cf0c74b commit ea58281

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

charts/s3proxy/README.md.gotmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ config:
110110
provider: "aws-s3"
111111
awsS3:
112112
region: "us-west-2"
113-
accessKeyId: "aws-access-key-id" # For s3proxy to connect to AWS
113+
accessKeyID: "aws-access-key-id" # For s3proxy to connect to AWS
114114
secretAccessKey: "aws-secret-access-key"
115115

116116
persistence:
@@ -158,7 +158,7 @@ config:
158158
backend:
159159
provider: "google-cloud-storage"
160160
googleCloudStorage:
161-
projectId: "my-project"
161+
projectID: "my-project"
162162
clientEmail: "[email protected]"
163163
privateKey: |
164164
-----BEGIN RSA PRIVATE KEY-----

charts/s3proxy/override-values.example.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ config:
6666
aws: true # Set to true for AWS S3 (aws-s3 provider), false for generic S3
6767
region: "us-west-2"
6868
# endpoint: "https://s3.amazonaws.com" # Optional custom endpoint (e.g., MinIO, Ceph)
69-
accessKeyId: "AKIAIOSFODNN7EXAMPLE"
69+
accessKeyID: "AKIAIOSFODNN7EXAMPLE"
7070
secretAccessKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"
7171

7272
# Azure Blob Storage backend
@@ -81,7 +81,7 @@ config:
8181
# Google Cloud Storage backend
8282
googleCloudStorage:
8383
enabled: false # Set to true to use GCS backend
84-
projectId: "my-project"
84+
projectID: "my-project"
8585

8686
# Service account email or user email (required for both authentication methods)
8787
clientEmail: "[email protected]"
@@ -122,7 +122,7 @@ config:
122122
# OpenStack Swift backend
123123
openstackSwift:
124124
enabled: false # Set to true to use Swift backend
125-
authUrl: "https://auth.cloud.com/v2.0"
125+
authURL: "https://auth.cloud.com/v2.0"
126126
tenantName: "my-tenant"
127127
userName: "my-user"
128128
password: "my-password"

charts/s3proxy/templates/configmap.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ data:
133133

134134
# Google Cloud Storage backend configuration
135135
jclouds.provider=google-cloud-storage
136-
{{- if .Values.config.backends.googleCloudStorage.projectId }}
137-
jclouds.project-id={{ .Values.config.backends.googleCloudStorage.projectId }}
136+
{{- if .Values.config.backends.googleCloudStorage.projectID }}
137+
jclouds.project-id={{ .Values.config.backends.googleCloudStorage.projectID }}
138138
{{- end }}
139139
# Credentials will be merged from the secret properties file
140140
# jclouds.identity and jclouds.credential will be provided by the secret
@@ -156,8 +156,8 @@ data:
156156

157157
# OpenStack Swift backend configuration
158158
jclouds.provider=openstack-swift
159-
{{- if .Values.config.backends.openstackSwift.authUrl }}
160-
jclouds.keystone.auth-url={{ .Values.config.backends.openstackSwift.authUrl }}
159+
{{- if .Values.config.backends.openstackSwift.authURL }}
160+
jclouds.keystone.auth-url={{ .Values.config.backends.openstackSwift.authURL }}
161161
{{- end }}
162162
{{- if .Values.config.backends.openstackSwift.region }}
163163
jclouds.region={{ .Values.config.backends.openstackSwift.region }}
@@ -178,4 +178,4 @@ data:
178178
{{- end }}
179179
# Credentials will be merged from the secret properties file
180180
# jclouds.identity and jclouds.credential will be provided by the secret
181-
{{- end }}
181+
{{- end }}

charts/s3proxy/templates/secret.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ stringData:
1717

1818
{{- if .Values.config.backends.s3.enabled }}
1919
# S3 backend credentials
20-
{{- if .Values.config.backends.s3.accessKeyId }}
21-
jclouds.identity={{ .Values.config.backends.s3.accessKeyId }}
20+
{{- if .Values.config.backends.s3.accessKeyID }}
21+
jclouds.identity={{ .Values.config.backends.s3.accessKeyID }}
2222
{{- end }}
2323
{{- if .Values.config.backends.s3.secretAccessKey }}
2424
jclouds.credential={{ .Values.config.backends.s3.secretAccessKey }}
@@ -74,4 +74,4 @@ stringData:
7474
{{- if .Values.config.backends.rackspaceCloudfiles.apiKey }}
7575
jclouds.credential={{ .Values.config.backends.rackspaceCloudfiles.apiKey }}
7676
{{- end }}
77-
{{- end }}
77+
{{- end }}

charts/s3proxy/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ config:
182182
# -- S3 endpoint
183183
endpoint: ""
184184
# -- S3 Access Key ID for backend
185-
accessKeyId: ""
185+
accessKeyID: ""
186186
# -- S3 Secret Access Key for backend
187187
secretAccessKey: ""
188188

@@ -204,7 +204,7 @@ config:
204204
# -- Enable Google Cloud Storage backend
205205
enabled: false
206206
# -- GCP project ID
207-
projectId: ""
207+
projectID: ""
208208
# -- Private key (only used when jsonCredentials.enabled is false)
209209
privateKey: ""
210210
# -- Service account email or user email (used with both privateKey and jsonCredentials methods)
@@ -232,7 +232,7 @@ config:
232232
# -- Enable OpenStack Swift backend
233233
enabled: false
234234
# -- Authentication URL
235-
authUrl: ""
235+
authURL: ""
236236
# -- Tenant name
237237
tenantName: ""
238238
# -- Username

0 commit comments

Comments
 (0)