From 30832d149291edbf947a4049706811bcfc29664e Mon Sep 17 00:00:00 2001 From: Tommy Hughes Date: Wed, 2 Oct 2024 15:35:45 -0500 Subject: [PATCH] add operator to Makefile Signed-off-by: Tommy Hughes --- .github/workflows/publish.yml | 2 +- Makefile | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c2a5bd21ee..7d5dca8e08 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -49,7 +49,7 @@ jobs: needs: [get-version, publish-python-sdk] strategy: matrix: - component: [feature-server, feature-server-java, feature-transformation-server, feast-helm-operator] + component: [feature-server, feature-server-java, feature-transformation-server, feast-helm-operator, feast-operator] env: MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar REGISTRY: feastdev diff --git a/Makefile b/Makefile index 10187b8ebc..22d4d25f4e 100644 --- a/Makefile +++ b/Makefile @@ -442,6 +442,18 @@ build-feast-helm-operator-docker: VERSION=$(VERSION) \ $(MAKE) docker-build +push-feast-operator-docker: + cd infra/feast-operator && \ + IMAGE_TAG_BASE=$(REGISTRY)/feast-operator \ + VERSION=$(VERSION) \ + $(MAKE) docker-push + +build-feast-operator-docker: + cd infra/feast-operator && \ + IMAGE_TAG_BASE=$(REGISTRY)/feast-operator \ + VERSION=$(VERSION) \ + $(MAKE) docker-build + # Dev images build-feature-server-dev: