Skip to content

Commit 250b394

Browse files
committed
Resolve additional conflicts
1 parent 7e91d74 commit 250b394

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

operators/Makefile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,7 @@ run: helm-operator ## Run against the configured Kubernetes cluster in ~/.kube/c
4949

5050
.PHONY: docker-build
5151
docker-build: ## Build docker image with the manager.
52-
<<<<<<< HEAD
53-
docker build -f Dockerfile -t ${IMG} ..
54-
=======
5552
docker build --platform linux/$(ARCH) -f Dockerfile -t ${IMG} ..
56-
>>>>>>> feat/openshift-support
5753

5854
.PHONY: docker-push
5955
docker-push: ## Push docker image with the manager.
@@ -93,11 +89,7 @@ undeploy: ## Undeploy controller from the K8s cluster specified in ~/.kube/confi
9389
$(KUSTOMIZE) build config/default | kubectl delete -f -
9490

9591
OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
96-
<<<<<<< HEAD
97-
ARCH := $(shell uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
98-
=======
9992
ARCH ?= $(shell uname -m | sed 's/x86_64/amd64/' | sed 's/aarch64/arm64/')
100-
>>>>>>> feat/openshift-support
10193

10294
.PHONY: kustomize
10395
KUSTOMIZE = $(shell pwd)/bin/kustomize

operators/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,7 @@ For complete configuration options, see the [Helm Chart Documentation](https://g
6363
### Building and Testing the Operator Locally
6464

6565
```bash
66-
<<<<<<< HEAD
67-
# Build the operator image
68-
=======
6966
# Build the operator image. If building for deploying on a cluster with different architecture from your local machine, append ARCH=<targetarch> e.g. `ARCH=amd64` to the below command
70-
>>>>>>> feat/openshift-support
7167
make docker-build IMG=<your-registry>/nginx-gateway-fabric-operator:<tag>
7268

7369
# Push the image

0 commit comments

Comments
 (0)