Skip to content

Commit

Permalink
add kubevirt/virt-operator:0.50.0
Browse files Browse the repository at this point in the history
Signed-off-by: yzewei <[email protected]>
  • Loading branch information
yzewei committed Dec 24, 2024
1 parent 916ea0c commit 4ca4685
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kubevirt/cdi-controller/1.52.0/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LATEST_IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):latest
default: image

download:
wget http://cloud.loongnix.xa/releases/loongarch64/kubevirt/cdi-controller/1.52.0/cdi-controller
wget http://cloud.loongnix.cn/releases/loongarch64/kubevirt/cdi-controller/1.52.0/cdi-controller
chmod +x cdi-controller

image: download
Expand Down
2 changes: 1 addition & 1 deletion kubevirt/cdi-uploadserver/1.52.0/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LATEST_IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):latest
default: image

download: clean
unset http_proxy && wget http://cloud.loongnix.xa/releases/loongarch64/kubevirt/cdi-uploadserver/1.52.0/cdi-uploadserver
unset http_proxy && wget http://cloud.loongnix.cn/releases/loongarch64/kubevirt/cdi-uploadserver/1.52.0/cdi-uploadserver
chmod +x cdi-uploadserver

image: download
Expand Down
2 changes: 1 addition & 1 deletion kubevirt/virt-controller/0.50.0/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):$(TAG)
default: image

download:
wget "http://cloud.loongnix.xa/releases/loongarch64/kubevirt/virt-controller/0.50.0/virt-controller"
wget "http://cloud.loongnix.cn/releases/loongarch64/kubevirt/virt-controller/0.50.0/virt-controller"
chmod +x virt-controller

image: download
Expand Down
2 changes: 1 addition & 1 deletion kubevirt/virt-controller/0.55.0/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):$(TAG)
default: image

download:
wget "http://cloud.loongnix.xa/releases/loongarch64/kubevirt/virt-controller/0.55.0/virt-controller"
wget "http://cloud.loongnix.cn/releases/loongarch64/kubevirt/virt-controller/0.55.0/virt-controller"
chmod +x virt-controller

image: download
Expand Down
2 changes: 1 addition & 1 deletion kubevirt/virt-controller/0.56.0/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LATEST?=true

IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):$(TAG)
LATEST_IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):latest
DOWNLOAD_URL=http://cloud.loongnix.xa/releases/loongarch64/kubevirt/virt-controller/0.50.0/virt-controller
DOWNLOAD_URL=http://cloud.loongnix.cn/releases/loongarch64/kubevirt/virt-controller/0.50.0/virt-controller
default: image

download:
Expand Down
2 changes: 1 addition & 1 deletion kubevirt/virt-controller/0.58.0/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ LATEST?=false

IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):$(TAG)
LATEST_IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):latest
DOWNLOAD_URL=http://cloud.loongnix.xa/releases/loongarch64/kubevirt/virt-controller/0.58.0/virt-controller
DOWNLOAD_URL=http://cloud.loongnix.cn/releases/loongarch64/kubevirt/virt-controller/0.58.0/virt-controller
default: image

download:
Expand Down
13 changes: 13 additions & 0 deletions kubevirt/virt-operator/0.50.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM lcr.loongnix.cn/kubevirt/passwd:0.50.0

LABEL maintainer="[email protected]"

COPY .version /

COPY ./virt-operator /usr/bin/

COPY ./csv-generator /usr/bin/

USER 1001

ENTRYPOINT ["/usr/bin/virt-operator"]
29 changes: 29 additions & 0 deletions kubevirt/virt-operator/0.50.0/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This file is generated by the template.

REGISTRY?=lcr.loongnix.cn
ORGANIZATION?=kubevirt
REPOSITORY?=virt-operator
TAG?=0.50.0

IMAGE=$(REGISTRY)/$(ORGANIZATION)/$(REPOSITORY):$(TAG)


default: image

download:
wget "http://cloud.loongnix.cn/releases/loongarch64/kubevirt/virt-operator/0.50.0/virt-operator"
wget "http://cloud.loongnix.cn/releases/loongarch64/kubevirt/csv-generator/0.50.0/csv-generator"
chmod +x virt-operator
chmod +x csv-generator

image: download
docker build \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)

clean:
rm -f virt-operator \
csv-generator

0 comments on commit 4ca4685

Please sign in to comment.