Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
Signed-off-by: Xieql <[email protected]>
  • Loading branch information
Xieql committed Sep 6, 2023
1 parent fcc79c6 commit a9ab316
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 11 deletions.
17 changes: 14 additions & 3 deletions docs/content/en/references/fleet_v1alpha1_types.html
Original file line number Diff line number Diff line change
Expand Up @@ -268,18 +268,18 @@ <h3 id="fleet.kurator.dev/v1alpha1.BackupStorageLocation">BackupStorageLocation
</em>
</td>
<td>
<p>Provider specifies the storage provider type (e.g., aws).</p>
<p>Provider specifies the storage provider type (e.g., aws, gcp, azure).</p>
</td>
</tr>
<tr>
<td>
<code>s3Url</code><br>
<code>endpoint</code><br>
<em>
string
</em>
</td>
<td>
<p>S3Url provides the endpoint URL for S3-compatible storage.</p>
<p>Endpoint provides the endpoint URL for the storage.</p>
</td>
</tr>
<tr>
Expand All @@ -293,6 +293,17 @@ <h3 id="fleet.kurator.dev/v1alpha1.BackupStorageLocation">BackupStorageLocation
<p>Region specifies the region of the storage.</p>
</td>
</tr>
<tr>
<td>
<code>config</code><br>
<em>
map[string]string
</em>
</td>
<td>
<p>Config is a map for additional provider-specific configurations.</p>
</td>
</tr>
</tbody>
</table>
</div>
Expand Down
18 changes: 12 additions & 6 deletions manifests/charts/fleet-manager/crds/fleet.kurator.dev_fleet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,22 +151,28 @@ spec:
bucket:
description: Bucket specifies the storage bucket name.
type: string
config:
additionalProperties:
type: string
description: Config is a map for additional provider-specific
configurations.
type: object
endpoint:
description: Endpoint provides the endpoint URL for
the storage.
type: string
provider:
description: Provider specifies the storage provider
type (e.g., aws).
type (e.g., aws, gcp, azure).
type: string
region:
description: Region specifies the region of the storage.
type: string
s3Url:
description: S3Url provides the endpoint URL for S3-compatible
storage.
type: string
required:
- bucket
- endpoint
- provider
- region
- s3Url
type: object
secretName:
description: "SecretName represents the name of the secret
Expand Down
11 changes: 9 additions & 2 deletions pkg/apis/fleet/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a9ab316

Please sign in to comment.