Skip to content

Commit

Permalink
security: fix CVE-2021-3995, CVE-2021-3996
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
  • Loading branch information
aramase committed Jan 25, 2022
1 parent 73bc800 commit e6d1c8f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ E2E_PROVIDER_IMAGE_NAME ?= e2e-provider
# Release version is the current supported release for the driver
# Update this version when the helm chart is being updated for release
RELEASE_VERSION := v1.0.1
IMAGE_VERSION ?= v1.0.1
IMAGE_VERSION ?= v1.0.1.1

# Use a custom version for E2E tests if we are testing in CI
ifdef CI
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ RUN export GOOS=$TARGETOS && \
FROM $BASEIMAGE
COPY --from=builder /go/src/sigs.k8s.io/secrets-store-csi-driver/_output/secrets-store-csi /secrets-store-csi
# upgrading libgmp10 due to CVE-2021-43618
RUN clean-install ca-certificates mount libgmp10
# upgrading bsdutils due to CVE-2021-3995 and CVE-2021-3996
RUN clean-install ca-certificates mount libgmp10 bsdutils

LABEL maintainers="ritazh"
LABEL description="Secrets Store CSI Driver"
Expand Down
2 changes: 1 addition & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
REGISTRY?=docker.io/deislabs
IMAGE_NAME=driver
CRD_IMAGE_NAME=driver-crds
IMAGE_VERSION?=v1.0.1
IMAGE_VERSION?=v1.0.1.1
BUILD_TIMESTAMP := $(shell date +%Y-%m-%d-%H:%M)
BUILD_COMMIT := $(shell git rev-parse --short HEAD)
IMAGE_TAG=$(REGISTRY)/$(IMAGE_NAME):$(IMAGE_VERSION)
Expand Down

0 comments on commit e6d1c8f

Please sign in to comment.