diff --git a/charts/ecr-anywhere/Chart.yaml b/charts/ecr-anywhere/Chart.yaml index 7737438..39a4d6f 100644 --- a/charts/ecr-anywhere/Chart.yaml +++ b/charts/ecr-anywhere/Chart.yaml @@ -15,10 +15,10 @@ 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: 1.0.2 +version: 1.0.3 # 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 # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "1.0.0" +appVersion: "1.0.1" diff --git a/charts/ecr-anywhere/values.yaml b/charts/ecr-anywhere/values.yaml index 3d0f8e1..d4a4987 100644 --- a/charts/ecr-anywhere/values.yaml +++ b/charts/ecr-anywhere/values.yaml @@ -21,7 +21,7 @@ mutatingWebhookConfiguration: image: repository: ghcr.io/centml/ecr-anywhere - tag: v1.0.0 + tag: v1.0.1 imagePullPolicy: Always cronjob: diff --git a/cmd/refresher/main.go b/cmd/refresher/main.go index 3bce1d9..9d4a019 100644 --- a/cmd/refresher/main.go +++ b/cmd/refresher/main.go @@ -48,7 +48,7 @@ func main() { log.Fatalf("Failed to create kubernetes clientset: %v", err) } - loggers := loggers.NewLoggers(log.New(os.Stderr, "INFO: ", log.Ldate|log.Ltime|log.Lshortfile), nil, log.New(os.Stderr, "ERROR: ", log.Ldate|log.Ltime|log.Lshortfile)) + loggers := loggers.NewLoggers(log.New(os.Stderr, "INFO: ", log.Ldate|log.Ltime|log.Lshortfile), log.New(os.Stderr, "WARN: ", log.Ldate|log.Ltime|log.Lshortfile), log.New(os.Stderr, "ERROR: ", log.Ldate|log.Ltime|log.Lshortfile)) r := credentials.NewK8sCredentialRefreshRequester(clientset, loggers) // TODO stop hardcoding