Skip to content

Commit f4093ac

Browse files
authored
fix backwards-incompatible change on gcsfuse (#328)
* fix backwards-incompatible change on gcsfuse * Automated commit: update images. * Update Dockerfile allow caching the type (dir vs file) so that things are a bit faster. this creates weird race conditions (file vs. dir) but that should be fine (tm) * dummy commit * Automated commit: update images.
1 parent 71aa83a commit f4093ac

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

dist/resources/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
serviceAccountName: kctf-operator
1717
containers:
1818
- name: kctf-operator
19-
image: gcr.io/kctf-docker/kctf-operator@sha256:a42991dd7d2d4267815572912ce0410094d8a83af50df1f12b86616de890c9ac
19+
image: gcr.io/kctf-docker/kctf-operator@sha256:72e587201d532cc77de7b791d51ea35917b5808e0335807ab93481997067e874
2020
command:
2121
- kctf-operator
2222
imagePullPolicy: Always

docker-images/gcsfuse/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ RUN wget -q https://github.com/GoogleCloudPlatform/gcsfuse/releases/download/v0.
55
RUN mkdir -p /mnt/disks/gcs
66

77
CMD test -f /config/gcs_bucket &&\
8-
gcsfuse --foreground --debug_fuse --debug_gcs --stat-cache-ttl 0 -type-cache-ttl 0 -o allow_other -o nonempty --file-mode 0777 --dir-mode 0777 --uid 1000 --gid 1000 "$(cat /config/gcs_bucket)" /mnt/disks/gcs
8+
gcsfuse --foreground --debug_fuse --debug_gcs --stat-cache-ttl 0 -o allow_other --file-mode 0777 --dir-mode 0777 --uid 1000 --gid 1000 "$(cat /config/gcs_bucket)" /mnt/disks/gcs
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
package resources
22

3-
// <AUTOMATICALLY GENERATED>
3+
// <AUTOMATICALLY GENERATED>
44
// =======================================
55
// == || These are set by automation || ==
66
// .. vv ........................... vv ..
77

88
const DOCKER_CERTBOT_IMAGE = "gcr.io/kctf-docker/certbot@sha256:82be4c84fad2a11a6b92aa472cab2dd7018178ab89f27d4d77f46997ff539229"
9-
const DOCKER_GCSFUSE_IMAGE = "gcr.io/kctf-docker/gcsfuse@sha256:560897fba48dffba06e3a03c0b959bebc5e8bcb01d51e71bce75e05d0ad71119"
9+
const DOCKER_GCSFUSE_IMAGE = "gcr.io/kctf-docker/gcsfuse@sha256:b3e780cd860d3566bd91e6cc5a39e55377a33c22ff521b393f14947852967831"
1010

1111
// .. ^^ ........................... ^^ ..
1212
// == || These are set by automation || ==
1313
// =======================================
14-
// </AUTOMATICALLY GENERATED>
14+
// </AUTOMATICALLY GENERATED>

0 commit comments

Comments
 (0)