Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add csi-node-driver-registrar #125

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.10.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.10.0/csi-node-driver-registrar-v2.10.0-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.10.0/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.10.0
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.10.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.10.1/csi-node-driver-registrar-v2.10.1-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.10.1/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.10.1
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.11.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.11.0/csi-node-driver-registrar-v2.11.0-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.11.0/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.11.0
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.11.1-rc1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.11.1-rc1/csi-node-driver-registrar-v2.11.1-rc1-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.11.1-rc1/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.11.1-rc1
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.11.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.11.1/csi-node-driver-registrar-v2.11.1-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.11.1/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.11.1
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.12.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.12.0/csi-node-driver-registrar-v2.12.0-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.12.0/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.12.0
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.6.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.6.0/csi-node-driver-registrar-v2.6.0-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.6.0/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.6.0
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.6.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.6.1/csi-node-driver-registrar-v2.6.1-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.6.1/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.6.1
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.6.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.6.2/csi-node-driver-registrar-v2.6.2-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
28 changes: 28 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.6.2/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file is generated by the template.

REGISTRY ?=lcr.loongnix.cn
ORGANIZATION ?=sig-storage
REPOSITORY ?=csi-node-driver-registrar
TAG ?=v2.6.2
LATEST ?=true

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

default: image

image:
docker build \
--build-arg http_proxy=$(http_proxy) \
--build-arg https_proxy=$(https_proxy) \
-t $(IMAGE) \
.

push:
docker push $(IMAGE)
#latest image
@if [ $(LATEST) = "true" ]; \
then \
docker tag $(IMAGE) $(LATEST_IMAGE); \
docker push $(LATEST_IMAGE); \
fi
12 changes: 12 additions & 0 deletions sig-storage/csi-node-driver-registrar/v2.6.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM lcr.loongnix.cn/library/debian:sid as downloader
RUN apt update -y && apt install wget -y
RUN wget -q -O /csi-node-driver-registrar https://github.com/Loongson-Cloud-Community/node-driver-registrar/releases/download/v2.6.3/csi-node-driver-registrar-v2.6.3-abi2.0
# 冒烟
RUN chmod +x /csi-node-driver-registrar && /csi-node-driver-registrar -version


FROM lcr.loongnix.cn/distroless/static-debian10:latest
LABEL maintainers="Kubernetes Authors"
LABEL description="CSI External Attacher"
COPY --from=downloader /csi-node-driver-registrar /csi-node-driver-registrar
ENTRYPOINT ["/csi-node-driver-registrar"]
Loading
Loading