File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
# This project applies to ppc64le only
2
2
ARCH ?= ppc64le
3
3
4
- REGISTRY ?= quay.io/powercloud
4
+ REGISTRY ?= quay.io/jcho0
5
5
REPOSITORY ?= power-dra-driver
6
- TAG ?= main
6
+ TAG ?= first-test
7
7
8
8
CONTAINER_RUNTIME ?= $(shell command -v podman 2> /dev/null || echo docker)
9
9
10
10
# #######################################################################
11
11
# Go Targets
12
12
13
- .PHONY : build
14
- build : fmt vet
15
- GOOS=linux GOARCH=$(ARCH ) go build -o bin/power-dra-driver cmd/power-dra-driver/main.go
13
+ # .PHONY: build
14
+ # build: fmt vet
15
+ # GOOS=linux GOARCH=$(ARCH) go build -o bin/power-dra-driver cmd/power-dra-driver/main.go
16
16
17
17
.PHONY : fmt
18
18
fmt :
34
34
image : build
35
35
$(CONTAINER_RUNTIME ) buildx build \
36
36
-t $(REGISTRY ) /$(REPOSITORY ) :$(TAG ) \
37
- --platform linux/$(ARCH ) -f build/Containerfile-build .
37
+ --platform linux/$(ARCH ) -f Dockerfile .
38
38
39
39
.PHONY : push
40
40
push :
@@ -50,4 +50,4 @@ dep-plugin:
50
50
51
51
.PHONY : dep-examples
52
52
dep-examples :
53
- kustomize build examples | oc apply -f -
53
+ kustomize build examples | oc apply -f -
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ LABEL description="Automate the management and monitoring of addition of specifi
11
11
RUN microdnf -y update && microdnf clean all
12
12
WORKDIR /
13
13
14
- COPY ./build/ entrypoint.sh /
15
- COPY bin/* /opt/power-dev-plugin/bin/
14
+ COPY ./entrypoint.sh /
15
+ COPY bin/ /opt/power-dev-plugin/bin/
16
16
17
- ENTRYPOINT ["/entrypoint.sh"]
17
+ ENTRYPOINT ["/entrypoint.sh"]
You can’t perform that action at this time.
0 commit comments