Skip to content

Commit

Permalink
upgrade gcsfuse to latest (#325)
Browse files Browse the repository at this point in the history
* upgrade gcsfuse to latest

this is to obtain better logs that were recently added

* Update Dockerfile

* Automated commit: update images.
  • Loading branch information
sirdarckcat authored Jul 9, 2021
1 parent 8501e6f commit 4eed77e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/resources/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
serviceAccountName: kctf-operator
containers:
- name: kctf-operator
image: gcr.io/kctf-docker/kctf-operator@sha256:62e32413c6dc0202918ae834fd5298f7074c05b4700cf49aefc1a18bb4ad2833
image: gcr.io/kctf-docker/kctf-operator@sha256:ef79e76158b7255ac408ce785c664b4e3ca6490d590a71f6e28c805d6a9f6c73
command:
- kctf-operator
imagePullPolicy: Always
Expand Down
2 changes: 1 addition & 1 deletion docker-images/gcsfuse/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y wget fuse
RUN wget -q https://github.com/GoogleCloudPlatform/gcsfuse/releases/download/v0.29.0/gcsfuse_0.29.0_amd64.deb && dpkg -i gcsfuse_0.29.0_amd64.deb
RUN wget -q https://github.com/GoogleCloudPlatform/gcsfuse/releases/download/v0.35.1/gcsfuse_0.35.1_amd64.deb && dpkg -i gcsfuse_0.35.1_amd64.deb
RUN mkdir -p /mnt/disks/gcs
CMD test -f /config/gcs_bucket &&\
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
2 changes: 1 addition & 1 deletion kctf-operator/pkg/resources/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package resources
// .. vv ........................... vv ..

const DOCKER_CERTBOT_IMAGE = "gcr.io/kctf-docker/certbot@sha256:b300d156df46be2615822f4f086b94a19f5101690948a9135be57aadd501ccf6"
const DOCKER_GCSFUSE_IMAGE = "gcr.io/kctf-docker/gcsfuse@sha256:2f10b98e1a011e3eebb9470d486033cc88d2b8c5cdac425b48b40866861d5194"
const DOCKER_GCSFUSE_IMAGE = "gcr.io/kctf-docker/gcsfuse@sha256:fecd90f412a624b36e76a15c5dfb6648f357dc9cc523b77fa58ad97b3d37a5c9"

// .. ^^ ........................... ^^ ..
// == || These are set by automation || ==
Expand Down

0 comments on commit 4eed77e

Please sign in to comment.