https://bentoml.com logo
Title
m

Maciej Styk

05/25/2023, 10:27 PM
Hi Everyone! I'm trying to set up yatai using provided helm-chart however I don't see any option to configure GCS bucket instead of AWS S3. I saw this PR: https://github.com/bentoml/BentoML/pull/1017 and now I'm wondering whether I'm missing something in helm-chart configuration since all I can see about cloud storage in values.yaml is this part:
s3:
  endpoint: ''
  region: ''
  bucketName: ''
  secure: true
  accessKey: ''
  secretKey: ''
  accessKeyExistingSecretName: ''
  aceessKeyExistingSecretKey: 'access_key'
  secretKeyExistingSecretName: ''
  secretKeyExistingSecretKey: 'secret_key'
Any help would be appreciated 🙏
l

larme (shenyang)

05/26/2023, 6:49 AM
@Xipeng Guan I think we haven't done the GCS support on yatai level yet?
x

Xipeng Guan

05/26/2023, 8:29 AM
cc @sauyon
m

Maciej Styk

05/26/2023, 9:26 AM
If there is no GCS support - is it possible to use standard PVC storage of k8s to store the data?
s

sauyon

05/26/2023, 4:15 PM
Heya---using GCS instead of S3 should be pretty straightforward, just use a service account's HMAC keys you can get from google to fill out access and secret keys: https://cloud.google.com/storage/docs/authentication/hmackeys
m

Maciej Styk

05/29/2023, 10:26 AM
I see, thanks! I will take a look at this 🙂