You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
or a [GCS storage bucket](https://cloud.google.com/storage/)
123
124
124
125
The PVC option can be configured using a ConfigMap with the name
@@ -127,11 +128,11 @@ The PVC option can be configured using a ConfigMap with the name
127
128
-`size`: the size of the volume (5Gi by default)
128
129
-`storageClassName`: the [storage class](https://kubernetes.io/docs/concepts/storage/storage-classes/) of the volume (default storage class by default). The possible values depend on the cluster configuration and the underlying infrastructure provider.
129
130
130
-
The GCS storage bucket can be configured using a ConfigMap with the name
131
+
The GCS storage bucket or the S3 bucket can be configured using a ConfigMap with the name
131
132
`config-artifact-bucket` with the following attributes:
132
133
133
-
-`location`: the address of the bucket (for example gs://mybucket)
134
-
- bucket.service.account.secret.name: the name of the secret that will contain
134
+
-`location`: the address of the bucket (for example gs://mybucket or s3://mybucket)
135
+
-`bucket.service.account.secret.name`: the name of the secret that will contain
135
136
the credentials for the service account with access to the bucket
136
137
-`bucket.service.account.secret.key`: the key in the secret with the required
137
138
service account json.
@@ -140,6 +141,40 @@ The GCS storage bucket can be configured using a ConfigMap with the name
140
141
-`bucket.service.account.field.name`: the name of the environment variable to use when specifying the
141
142
secret path. Defaults to `GOOGLE_APPLICATION_CREDENTIALS`. Set to `BOTO_CONFIG` if using S3 instead of GCS.
142
143
144
+
*Note:* When using an S3 bucket, there is a restriction that the bucket is located in the us-east-1 region.
145
+
This is a limitation coming from using [gsutil](https://cloud.google.com/storage/docs/gsutil) with a boto configuration
146
+
behind the scene to access the S3 bucket.
147
+
148
+
An typical configuration to use an S3 bucket is available below :
0 commit comments