Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
update the UBI base image version and tag scheme (#283)
Browse files Browse the repository at this point in the history
Use ubi-minimal:8.6, and use the same tag format as the vault repo
dockerfile (i.e. `<version>-ent-ubi` instead of `<version>-ubi-ent`).
  • Loading branch information
tvoran authored Jun 23, 2022
1 parent d38c498 commit 5930254
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ubi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.5
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6

LABEL maintainer="HashiCorp"
ARG VAULT_VERSION=1.11.0
Expand Down
4 changes: 2 additions & 2 deletions ubi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export VERSION=1.11.0
build: ent-image oss-image fips-ent-image

ent-image: export PROJECT_NAME=vault-enterprise
ent-image: export TAG_SUFFIX=-ubi-ent
ent-image: export TAG_SUFFIX=-ent-ubi
ent-image:
docker build --label version=$(VERSION) --build-arg VAULT_VERSION=$(VERSION)+ent --no-cache -t $(REGISTRY_NAME)/$(PROJECT_NAME):$(VERSION)$(TAG_SUFFIX) .
@../scripts/tag-images.sh
Expand Down Expand Up @@ -37,7 +37,7 @@ ent-push-image: export REGISTRY_KEY=${ENT_REGISTRY_KEY}
ent-push-image: export VAULT_PID=${ENT_VAULT_PID}
ent-push-image: export VAULT_VERSION=$(VERSION)
ent-push-image: export PROJECT_NAME=vault-enterprise
ent-push-image: export TAG_SUFFIX=-ubi-ent
ent-push-image: export TAG_SUFFIX=-ent-ubi
ent-push-image:
@./push_image.sh

Expand Down

0 comments on commit 5930254

Please sign in to comment.