Skip to content

Commit dfb44e4

Browse files
Pothulapatiroboquat
authored andcommitted
[kots] Fix typo in the s3 storage secret name
Fix #9911 `storage-s3` is miswritten as `storage-azure`, causing s3 to not work in the `kots` setup. This fixes that issue, while also renaming the help fields to be less confusing and more specific to aws. Signed-off-by: Tarun Pothulapati <[email protected]>
1 parent 9cc640e commit dfb44e4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

install/kots/manifests/gitpod-storage-s3-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
apiVersion: v1
55
kind: Secret
66
metadata:
7-
name: storage-azure
7+
name: storage-s3
88
labels:
99
app: gitpod
1010
component: gitpod-installer

install/kots/manifests/kots-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,18 +242,18 @@ spec:
242242
help_text: The endpoint used to connect to the S3 storage.
243243

244244
- name: store_s3_access_key_id
245-
title: Username
245+
title: Access Key
246246
type: text
247247
required: true
248248
when: '{{repl (ConfigOptionEquals "store_provider" "s3") }}'
249-
help_text: The username that has access to the S3 account. In AWS, this is an IAM user's credentials with `AmazonS3FullAccess` policy.
249+
help_text: Access key of IAM user's credentials with `AmazonS3FullAccess` policy.
250250

251251
- name: store_s3_secret_access_key
252-
title: Password
252+
title: Secret Key
253253
type: password
254254
required: true
255255
when: '{{repl (ConfigOptionEquals "store_provider" "s3") }}'
256-
help_text: The password that has access to the S3 account. In AWS, this is an IAM user's credentials with `AmazonS3FullAccess` policy.
256+
help_text: Secret key of IAM user's credentials with `AmazonS3FullAccess` policy.
257257

258258
- name: certs
259259
title: TLS certificates

0 commit comments

Comments
 (0)