Skip to content

Commit

Permalink
security: fix CVE-2022-2068
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
  • Loading branch information
aramase authored and k8s-infra-cherrypick-robot committed Jun 28, 2022
1 parent b37cadc commit c524aef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
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.2.0
IMAGE_VERSION ?= v1.2.0
IMAGE_VERSION ?= v1.2.0.0

# 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
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 dpkg due to CVE-2022-1664
RUN clean-install ca-certificates mount dpkg
# upgrading libssl1.1 due to CVE-2022-2068
RUN clean-install ca-certificates mount dpkg libssl1.1

LABEL maintainers="ritazh"
LABEL description="Secrets Store CSI Driver"
Expand Down
2 changes: 1 addition & 1 deletion docker/Makefile
Expand Up @@ -15,7 +15,7 @@
REGISTRY?=docker.io/deislabs
IMAGE_NAME=driver
CRD_IMAGE_NAME=driver-crds
IMAGE_VERSION?=v1.2.0
IMAGE_VERSION?=v1.2.0.0
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 c524aef

Please sign in to comment.