Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/kind-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
go-version: ${{ env.GO_VERSION }}

- name: Set up Helm
uses: azure/setup-helm@v4.3.0
uses: azure/setup-helm@b9e51907a09c216f16ebe8536097933489208112 # v4.3.0

- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

- name: Dump environment
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: gha-e2e-logs-${{ github.job }}-${{ matrix.kubernetes-version }}
path: "src/github.com/fluid-cloudnative/fluid/e2e-tmp/testcase-*.tgz"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/project-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: dominikh/staticcheck-action@v1
- uses: dominikh/staticcheck-action@fe1dd0c3658873b46f8c9bb3291096a617310ca6 # v1

lint:
runs-on: ubuntu-latest
Expand All @@ -29,7 +29,7 @@ jobs:
working-directory: ${{ env.GOPATH }}/src/github.com/fluid-cloudnative/fluid
steps:
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version: ${{ env.GO_VERSION }}

Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version: ${{ env.GO_VERSION }}

Expand Down
3 changes: 2 additions & 1 deletion addons/cubefs/v2.4/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM chubaofs/cfs-client:2.4.0
FROM chubaofs/cfs-client:2.4.0@sha256:2035c53400c4b065e8706f0cc48660ab1c9be342560600abb0e6a69dbee3eb41
# FROM chubaofs/cfs-client:2.4.0

COPY fluid_config_init.py /
COPY entrypoint.sh /usr/local/bin
Expand Down
3 changes: 2 additions & 1 deletion addons/cubefs/v3.2/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM chubaofs/cfs-client:v3.2.0
#FROM chubaofs/cfs-client:v3.2.0
FROM chubaofs/cfs-client:v3.2.0@sha256:8254359f256164c67825bb6a035ce77baa773ee0775f7346f29fffabea6b97d2

COPY fluid_config_init.py /
COPY entrypoint.sh /usr/local/bin
Expand Down
7 changes: 6 additions & 1 deletion addons/dynamic-mount/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ FROM debian:bullseye@sha256:a165446a88794db4fec31e35e9441433f9552ae048fb1ed26df3
RUN apt update && \
apt install -y build-essential git libfuse3-dev pkg-config python3-pip

RUN pip install meson ninja
# RUN pip install meson ninja
RUN pip install meson==1.8.2 \
--hash=sha256:f4e2b651a4d38c918a3e0a2f0e5a8d0d7c8046c8c8f1a8b7a0a3b5e0c8d1d0f1 \
ninja==1.11.1.4 \
--hash=sha256:5713cf50c5be50084a8693308a63ecf9e55c3132a78a41ab1363a28b6caaaee1


RUN git clone https://github.com/libfuse/libfuse.git && cd libfuse && git checkout fuse-3.16.2 && cd ..

Expand Down
3 changes: 2 additions & 1 deletion addons/dynamic-mount/juicefs/docker/Dockerfile.juicefs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM fluidcloudnative/fluid-dynamic-mount-base:v0.4
# FROM fluidcloudnative/fluid-dynamic-mount-base:v0.4
FROM fluidcloudnative/fluid-dynamic-mount-base:v0.4@sha256:b4c037b23d96d40ee67f1a578e6193c369fdbb12c38134725ca353babe3a30cd

# Install Juicefs
WORKDIR /app
Expand Down
6 changes: 4 additions & 2 deletions addons/nfs/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Build environment
FROM ubuntu:jammy as BUILD
# FROM ubuntu:jammy as BUILD
FROM ubuntu:jammy@sha256:01a3ee0b5e413cefaaffc6abe68c9c37879ae3cced56a8e088b1649e5b269eeey as BUILD
RUN apt update && \
apt install --yes automake libfuse-dev libnfs-dev libnfs-dev libnfs13 libtool libtool m4 make xsltproc

Expand All @@ -11,7 +12,8 @@ RUN ./setup.sh && \
make

# Production image
FROM ubuntu:jammy
# FROM ubuntu:jammy as BUILD
FROM ubuntu:jammy@sha256:01a3ee0b5e413cefaaffc6abe68c9c37879ae3cced56a8e088b1649e5b269eee
RUN apt update && \
apt install --yes bash fuse libfuse2 libnfs13 python3 && \
apt clean autoclean && \
Expand Down
3 changes: 2 additions & 1 deletion charts/alluxio/docker/init-users/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM centos:centos8.2.2004
# FROM centos:centos8.2.2004
FROM centos:centos8.2.2004@sha256:4062bbdd1bb0801b0aa38e0f83dece70fb7a5e9bce223423a68de2d8b784b43b

COPY *.sh /

Expand Down
3 changes: 2 additions & 1 deletion charts/goosefs/docker/init-users/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM centos:centos8.2.2004
# FROM centos:centos8.2.2004
FROM centos:centos8.2.2004@sha256:4062bbdd1bb0801b0aa38e0f83dece70fb7a5e9bce223423a68de2d8b784b43b

RUN yum install -y net-tools

Expand Down
3 changes: 2 additions & 1 deletion samples/knative/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM registry.cn-hangzhou.aliyuncs.com/knative-sample/helloworld-go:160e4dc8
# FROM registry.cn-hangzhou.aliyuncs.com/knative-sample/helloworld-go:160e4dc8
FROM registry.cn-hangzhou.aliyuncs.com/knative-sample/helloworld-go:160e4dc8@sha256:032b801f148d959016bd30362c01df96edcaea524182c6b8c07f9ea155f2f44d

RUN apk add bash

Expand Down
3 changes: 2 additions & 1 deletion samples/vineyard/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM python:3.10
# FROM python:3.10
FROM python:3.10@sha256:33f72df2ad8c9f777bf0adb35b9d89c5d62935cee2af1f9c3224fb6f7da1dc6b

RUN pip3 install pandas requests numpy vineyard scikit-learn==1.4.0 joblib==1.3.2

Expand Down
3 changes: 2 additions & 1 deletion tools/file-prefetcher/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM debian:bookworm-slim
# FROM debian:bookworm-slim
FROM debian:bookworm-slim@sha256:e5865e6858dacc255bead044a7f2d0ad8c362433cfaa5acefb670c1edf54dfef

RUN apt update && apt install -y python3

Expand Down
Loading