From 009dbc25cdeca31e477ed22a83d7be2fc8026683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfredo=20Espa=C3=B1a?= Date: Tue, 28 Feb 2023 10:03:22 -0600 Subject: [PATCH] Fix typo in password (#51) --- charts/terrakube/Chart.yaml | 2 +- charts/terrakube/templates/secrets-registry.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/terrakube/Chart.yaml b/charts/terrakube/Chart.yaml index 8e97668..48d8d92 100644 --- a/charts/terrakube/Chart.yaml +++ b/charts/terrakube/Chart.yaml @@ -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: 3.0.0 +version: 3.0.1 # 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 diff --git a/charts/terrakube/templates/secrets-registry.yaml b/charts/terrakube/templates/secrets-registry.yaml index 03a2d3a..0de2462 100644 --- a/charts/terrakube/templates/secrets-registry.yaml +++ b/charts/terrakube/templates/secrets-registry.yaml @@ -22,7 +22,7 @@ stringData: #AWS S3 Storage using MINIO RegistryStorageType: 'AwsStorageImpl' AwsStorageAccessKey: '{{ .Values.minio.auth.rootUser }}' - AwsStorageSecretKey: '{{ .Values.minio.auth.rootUser }}' + AwsStorageSecretKey: '{{ .Values.minio.auth.rootPassword }}' AwsStorageBucketName: '{{ .Values.minio.defaultBuckets }}' AwsStorageRegion: '{{ .Values.storage.default.region }}' AwsEndpoint: '{{ .Values.storage.default.endpoint }}'