diff --git a/Cloud/calico/3.29.3/24.03-lts-sp1/Dockerfile b/Cloud/calico/3.29.3/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..7a9e04a3c7965948560809cb9fbb8dcdf009bf50 --- /dev/null +++ b/Cloud/calico/3.29.3/24.03-lts-sp1/Dockerfile @@ -0,0 +1,12 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=3.29.3 + +RUN yum install -y gcc gcc-c++ java-1.8.0-openjdk javacc +RUN curl -fSL -o calicoctl https://github.com/projectcalico/calico/releases/download/v${VERSION}/calicoctl-linux-${TARGETARCH} && \ + mv calicoctl /usr/bin/calicoctl && \ + chmod 755 /usr/bin/calicoctl + +ENTRYPOINT ["/usr/bin/calicoctl"] \ No newline at end of file diff --git a/Cloud/calico/meta.yml b/Cloud/calico/meta.yml new file mode 100644 index 0000000000000000000000000000000000000000..676af6aa4fef1d0f30b7e9330df88ef7364fc0df --- /dev/null +++ b/Cloud/calico/meta.yml @@ -0,0 +1,2 @@ +3.29.3-oe2403sp1: + path: 3.29.3/24.03-lts-sp1/Dockerfile \ No newline at end of file diff --git a/Cloud/flannel/0.26.7/24.03-lts-sp1/Dockerfile b/Cloud/flannel/0.26.7/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..ebbe5378eefe4750c375a15d5fb9c4b97595fd2d --- /dev/null +++ b/Cloud/flannel/0.26.7/24.03-lts-sp1/Dockerfile @@ -0,0 +1,30 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG CGOFLAG=0 +ARG VERSION=0.26.7 +ARG GO_VERSION=1.23.7 +ARG FLANNEL_URL=https://github.com/flannel-io/flannel/archive/refs/tags/v${VERSION}.tar.gz + +WORKDIR /app +RUN curl -fSL -o go.tar.gz https://golang.google.cn/dl/go${GO_VERSION}.linux-${TARGETARCH}.tar.gz && \ + tar -xvf go.tar.gz -C /usr/local +ENV PATH="/usr/local/go/bin:${PATH}" + +RUN yum install -y conntrack-tools ipset net-tools +RUN if [ ${TARGETARCH} = "amd64" ]; then \ + CGOFLAG=1; \ + yum install -y gcc ; \ + fi && \ + curl -fSL ${FLANNEL_URL} -o flannel.tar.gz && \ + tar -xzf flannel.tar.gz && \ + cd flannel-* && \ + CGO_ENABLED=${CGOFLAG} go build && \ + cp flannel /usr/bin/ && \ + cd .. && \ + rm -rf flannel-* flannel.tar.gz && \ + yum clean all && \ + chmod a+x /usr/bin/flannel + +ENTRYPOINT ["/usr/bin/flannel"] \ No newline at end of file diff --git a/Cloud/flannel/meta.yml b/Cloud/flannel/meta.yml new file mode 100644 index 0000000000000000000000000000000000000000..2fa2f4b829b76ceb3781d75427a3296d44bb98a6 --- /dev/null +++ b/Cloud/flannel/meta.yml @@ -0,0 +1,2 @@ +0.26.5-oe2403sp1: + path: 0.26.5/24.03-lts-sp1/Dockerfile \ No newline at end of file diff --git a/Cloud/image-list.yml b/Cloud/image-list.yml index c3c56bcaa969e62fd828b1b5a121f3c89ed6a03e..f38aa52c094f19eea2543d273e9f623c49f89679 100644 --- a/Cloud/image-list.yml +++ b/Cloud/image-list.yml @@ -18,4 +18,6 @@ images: telegraf: telegraf tempo: tempo traefik: traefik - zookeeper: zookeeper \ No newline at end of file + zookeeper: zookeeper + flannel: flannel + istio: istio \ No newline at end of file diff --git a/Cloud/istio/1.25.1/24.03-lts-sp1/Dockerfile b/Cloud/istio/1.25.1/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..b40f85b2caea54dabeddf9aef64bdfaa12b1db42 --- /dev/null +++ b/Cloud/istio/1.25.1/24.03-lts-sp1/Dockerfile @@ -0,0 +1,13 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG VERSION=1.25.1 + +RUN curl -fSL -o istio.tar.gz https://github.com/istio/istio/releases/download/${VERSION}/istio-${VERSION}-linux-${TARGETARCH}.tar.gz && \ + mkdir -p /usr/local/istio/ && \ + tar -zxf istio.tar.gz -C /usr/local/istio/ --strip-components=1 + +ENV PATH=$PATH:/usr/local/istio/bin/ + +CMD ["istioctl", "version"] diff --git a/Cloud/istio/meta.yml b/Cloud/istio/meta.yml new file mode 100644 index 0000000000000000000000000000000000000000..570fd66dfc7638939eaf9ab7310c9fb9c5c7dcfb --- /dev/null +++ b/Cloud/istio/meta.yml @@ -0,0 +1,2 @@ +1.25.1-oe2403sp1: + path: 1.25.1/24.03-lts-sp1/Dockerfile \ No newline at end of file