File tree Expand file tree Collapse file tree 6 files changed +9
-9
lines changed
blob-csi-driver/templates Expand file tree Collapse file tree 6 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 41
41
run : |
42
42
export PATH=$PATH:$HOME/.local/bin
43
43
make blobfuse-proxy
44
- sudo dpkg -i pkg /blobfuse-proxy/debpackage .deb
44
+ sudo dpkg -i deploy /blobfuse-proxy/blobfuse-proxy .deb
45
45
46
46
- name : Get code coverage
47
47
env :
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ blob-darwin:
104
104
CGO_ENABLED=0 GOOS=darwin go build -a -ldflags ${LDFLAGS} -mod vendor -o _output/blobplugin ./pkg/blobplugin
105
105
106
106
.PHONY : container
107
- container : blob
107
+ container : blob blobfuse-proxy
108
108
docker build -t $(IMAGE_TAG ) --output=type=docker -f ./pkg/blobplugin/Dockerfile .
109
109
110
110
.PHONY : container-linux
@@ -113,7 +113,7 @@ container-linux:
113
113
-t $(IMAGE_TAG ) -linux-$(ARCH ) --build-arg ARCH=$(ARCH ) -f ./pkg/blobplugin/Dockerfile .
114
114
115
115
.PHONY : blob-container
116
- blob-container :
116
+ blob-container : blobfuse-proxy
117
117
docker buildx rm container-builder || true
118
118
docker buildx create --use --name=container-builder
119
119
@@ -169,7 +169,7 @@ delete-metrics-svc:
169
169
blobfuse-proxy :
170
170
mkdir -p ./pkg/blobfuse-proxy/debpackage/usr/bin/
171
171
CGO_ENABLED=0 GOOS=linux go build -mod vendor -ldflags=" -s -w" -o ./pkg/blobfuse-proxy/debpackage/usr/bin/blobfuse-proxy ./pkg/blobfuse-proxy
172
- dpkg-deb --build pkg/blobfuse-proxy/debpackage
172
+ dpkg-deb --build pkg/blobfuse-proxy/debpackage deploy/blobfuse-proxy/blobfuse-proxy.deb
173
173
174
174
.PHONY : blobfuse-proxy-container
175
175
blobfuse-proxy-container :
Original file line number Diff line number Diff line change 67
67
value : " noninteractive"
68
68
resources :
69
69
limits :
70
- cpu : 100m
71
- memory : 100Mi
70
+ cpu : 200m
71
+ memory : 200Mi
72
72
requests :
73
73
cpu : 10m
74
74
memory : 1Mi
Original file line number Diff line number Diff line change 67
67
value : " noninteractive"
68
68
resources :
69
69
limits :
70
- cpu : 100m
71
- memory : 100Mi
70
+ cpu : 200m
71
+ memory : 200Mi
72
72
requests :
73
73
cpu : 10m
74
74
memory : 1Mi
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN clean-install ca-certificates libfuse-dev libcurl4-gnutls-dev libgnutls28-de
19
19
RUN mkdir /blobfuse-proxy/
20
20
# for compatibility, remove this after v1.6.0 release (todo)
21
21
COPY deploy/blobfuse-proxy/v0.1.0/blobfuse-proxy-v0.1.0.deb /blobfuse-proxy/
22
- COPY deploy/blobfuse-proxy/v0.1.1/ blobfuse-proxy.deb /blobfuse-proxy/
22
+ COPY deploy/blobfuse-proxy/blobfuse-proxy.deb /blobfuse-proxy/
23
23
RUN wget -O /blobfuse-proxy/packages-microsoft-prod.deb https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb
24
24
RUN dpkg -i /blobfuse-proxy/packages-microsoft-prod.deb && apt update && apt install blobfuse fuse -y
25
25
# this is a workaround to install nfs-kernel-server and don't quit with error
You can’t perform that action at this time.
0 commit comments