Skip to content

Commit

Permalink
operator: configurable placeholder for kube-rbac-proxy (#1245)
Browse files Browse the repository at this point in the history
With this PR we can separately configure repo, namespace, image and tag
for the kube-rbac-proxy container image.

Signed-off-by: Mat Kowalski <[email protected]>
  • Loading branch information
mkowalski authored Jun 5, 2024
1 parent dcbb75e commit df565dd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ OPERATOR_IMAGE_TAG ?= latest
OPERATOR_IMAGE_FULL_NAME ?= $(IMAGE_REPO)/$(OPERATOR_IMAGE_NAME):$(OPERATOR_IMAGE_TAG)
OPERATOR_IMAGE ?= $(IMAGE_REGISTRY)/$(OPERATOR_IMAGE_FULL_NAME)

KUBE_RBAC_PROXY_IMAGE ?= quay.io/openshift/origin-kube-rbac-proxy:4.10.0
KUBE_RBAC_PROXY_NAME ?= origin-kube-rbac-proxy
KUBE_RBAC_PROXY_TAG ?= 4.10.0
KUBE_RBAC_PROXY_IMAGE_REGISTRY ?= quay.io
KUBE_RBAC_PROXY_IMAGE_REPO ?= openshift
KUBE_RBAC_PROXY_FULL_NAME ?= $(KUBE_RBAC_PROXY_IMAGE_REPO)/$(KUBE_RBAC_PROXY_NAME):$(KUBE_RBAC_PROXY_TAG)
KUBE_RBAC_PROXY_IMAGE ?= $(KUBE_RBAC_PROXY_IMAGE_REGISTRY)/$(KUBE_RBAC_PROXY_FULL_NAME)

export HANDLER_NAMESPACE ?= nmstate
export OPERATOR_NAMESPACE ?= $(HANDLER_NAMESPACE)
Expand Down

0 comments on commit df565dd

Please sign in to comment.