mirror of
https://github.com/helm/chartmuseum.git
synced 2026-02-05 15:45:50 +01:00
2
Makefile
2
Makefile
@@ -1,5 +1,5 @@
|
||||
# TODO(cbuto): Pull from git tag to avoid needing to bump this prior to releasing
|
||||
VERSION ?= 0.16.3
|
||||
VERSION ?= 0.16.4
|
||||
REVISION := $(shell git rev-parse --short HEAD;)
|
||||
|
||||
BINDIR := $(CURDIR)/bin
|
||||
|
||||
@@ -472,7 +472,7 @@ docker run --rm -it \
|
||||
-e STORAGE=local \
|
||||
-e STORAGE_LOCAL_ROOTDIR=/charts \
|
||||
-v $(pwd)/charts:/charts \
|
||||
ghcr.io/helm/chartmuseum:v0.16.3
|
||||
ghcr.io/helm/chartmuseum:v0.16.4
|
||||
```
|
||||
|
||||
Example usage (S3):
|
||||
@@ -485,7 +485,7 @@ docker run --rm -it \
|
||||
-e STORAGE_AMAZON_PREFIX="" \
|
||||
-e STORAGE_AMAZON_REGION="us-east-1" \
|
||||
-v ~/.aws:/home/chartmuseum/.aws:ro \
|
||||
ghcr.io/helm/chartmuseum:v0.16.3
|
||||
ghcr.io/helm/chartmuseum:v0.16.4
|
||||
```
|
||||
|
||||
### Helm Chart
|
||||
|
||||
3
go.mod
3
go.mod
@@ -6,7 +6,7 @@ toolchain go1.24.1
|
||||
|
||||
require (
|
||||
github.com/alicebob/miniredis v2.5.0+incompatible
|
||||
github.com/chartmuseum/auth v0.5.0
|
||||
github.com/chartmuseum/auth v0.6.0
|
||||
github.com/chartmuseum/storage v0.16.0
|
||||
github.com/gin-contrib/size v0.0.0-20230212012657-e14a14094dc4
|
||||
github.com/gin-gonic/gin v1.10.0
|
||||
@@ -76,7 +76,6 @@ require (
|
||||
github.com/go-playground/validator/v10 v10.20.0 // indirect
|
||||
github.com/goccy/go-json v0.10.2 // indirect
|
||||
github.com/gogo/protobuf v1.3.2 // indirect
|
||||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
||||
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
|
||||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
||||
github.com/golang/protobuf v1.5.4 // indirect
|
||||
|
||||
6
go.sum
6
go.sum
@@ -107,8 +107,8 @@ github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UF
|
||||
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
|
||||
github.com/chai2010/gettext-go v1.0.2 h1:1Lwwip6Q2QGsAdl/ZKPCwTe9fe0CjlUbqj5bFNSjIRk=
|
||||
github.com/chai2010/gettext-go v1.0.2/go.mod h1:y+wnP2cHYaVj19NZhYKAwEMH2CI1gNHeQQ+5AjwawxA=
|
||||
github.com/chartmuseum/auth v0.5.0 h1:ENNmoxvjxcR/JR0HrghAEtGQe7hToMNj16+UoS5CK9Y=
|
||||
github.com/chartmuseum/auth v0.5.0/go.mod h1:BvoSXHyvbsq+/bbhNgVTDQsModM+HERBTNY5o9Vyrig=
|
||||
github.com/chartmuseum/auth v0.6.0 h1:TsTKvWBdUHYbwmqvWfBmlW4+KM5ys2Xy3MVFJ02V9Yk=
|
||||
github.com/chartmuseum/auth v0.6.0/go.mod h1:IuUDkd61/J1X/AAn2m4CoPeV3OIjsDvvjo4S+vSJBhI=
|
||||
github.com/chartmuseum/storage v0.16.0 h1:Foj4sCt0NJnUZ0BWFWwTjhtiJB+SSSBAIEdIBsvj95U=
|
||||
github.com/chartmuseum/storage v0.16.0/go.mod h1:bdR0ivrBAk4f8qBnqijvgzmLFop9A2Ils4yOpoiLKuQ=
|
||||
github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI=
|
||||
@@ -237,8 +237,6 @@ github.com/gofrs/uuid v4.4.0+incompatible h1:3qXRTX8/NbyulANqlc0lchS1gqAVxRgsuW1
|
||||
github.com/gofrs/uuid v4.4.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
|
||||
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
|
||||
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
|
||||
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
|
||||
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
|
||||
github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg=
|
||||
github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg=
|
||||
github.com/golang-jwt/jwt/v4 v4.5.2 h1:YtQM7lnr8iZ+j5q71MGKkNw9Mn7AjHM68uc9g5fXeUI=
|
||||
|
||||
Reference in New Issue
Block a user