From e5a9353e964ebbfed11f89f1db1c0a21d9d74cc8 Mon Sep 17 00:00:00 2001 From: Tarun Gupta Akirala Date: Mon, 27 Jan 2025 12:12:02 -0800 Subject: [PATCH] fix: typo Co-authored-by: Martin Hrabovcin --- stable/cosi-bucket-kit/templates/job-readiness.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stable/cosi-bucket-kit/templates/job-readiness.yaml b/stable/cosi-bucket-kit/templates/job-readiness.yaml index 68d3baadf..7d2270a79 100644 --- a/stable/cosi-bucket-kit/templates/job-readiness.yaml +++ b/stable/cosi-bucket-kit/templates/job-readiness.yaml @@ -179,7 +179,7 @@ spec: --from-literal=REGISTRY_STORAGE_S3_ACCESSKEY=$(kubectl get secret {{ .credentialsSecretName }} -n {{ $ns }} -o jsonpath="{.data.BucketInfo}" | base64 --decode | jq -r '.spec.secretS3.accessKeyID') \ --from-literal=REGISTRY_STORAGE_S3_SECRETKEY=$(kubectl get secret {{ .credentialsSecretName }} -n {{ $ns }} -o jsonpath="{.data.BucketInfo}" | base64 --decode | jq -r '.spec.secretS3.accessSecretKey') \ --from-literal=REGISTRY_STORAGE_S3_REGION=none \ - --from-literal=REGISTRY_STORAGE_S3_REGIONENDPOINT=$(kubectl get secret {{ .credentialsSecretName }} -n {{ $ns }} -o jsonpath="{.data.BucketInfo}" | base64 --decode | jq -r '.spec.secretS3.nedpoint') \ + --from-literal=REGISTRY_STORAGE_S3_REGIONENDPOINT=$(kubectl get secret {{ .credentialsSecretName }} -n {{ $ns }} -o jsonpath="{.data.BucketInfo}" | base64 --decode | jq -r '.spec.secretS3.endpoint') \ --from-literal=REGISTRY_STORAGE_S3_BUCKET=$(kubectl get secret {{ .credentialsSecretName }} -n {{ $ns }} -o jsonpath="{.data.BucketInfo}" | base64 --decode | jq -r '.spec.bucketName') \ --from-literal=REGISTRY_STORAGE_S3_SECURE=false \ --from-literal=REGISTRY_STORAGE_REDIRECT_DISABLE=true \