Skip to content

Commit e089b77

Browse files
committed
Update fluid python sdk to v1.0.3
Signed-off-by: trafalgarzzz <[email protected]>
1 parent 07e8110 commit e089b77

23 files changed

+759
-8
lines changed

docs/AffinityStrategy.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6+
**depend_on** | [**ObjectRef**](ObjectRef.md) | | [optional]
67
**policy** | **str** | Policy one of: \&quot;\&quot;, \&quot;Require\&quot;, \&quot;Prefer\&quot; | [optional]
78
**prefers** | [**list[Prefer]**](Prefer.md) | | [optional]
89
**requires** | [**list[Require]**](Require.md) | | [optional]

docs/ClientMetrics.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# ClientMetrics
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**enabled** | **bool** | Enabled decides whether to expose client metrics. | [optional]
7+
**scrape_target** | **str** | ScrapeTarget decides which fuse component will be scraped by Prometheus. It is a list separated by comma where supported items are [MountPod, Sidecar, All (indicates MountPod and Sidecar), None]. Defaults to None when it is not explicitly set. | [optional]
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/JindoCompTemplateSpec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**disabled** | **bool** | If disable JindoFS master or worker | [optional]
88
**env** | **dict(str, str)** | Environment variables that will be used by Jindo component. &lt;br&gt; | [optional]
9+
**image_pull_secrets** | [**list[V1LocalObjectReference]**](V1LocalObjectReference.md) | ImagePullSecrets that will be used to pull images | [optional]
910
**labels** | **dict(str, str)** | Labels will be added on JindoFS Master or Worker pods. DEPRECATED: This is a deprecated field. Please use PodMetadata instead. Note: this field is set to be exclusive with PodMetadata.Labels | [optional]
1011
**node_selector** | **dict(str, str)** | NodeSelector is a selector which must be true for the master to fit on a node | [optional]
1112
**pod_metadata** | [**PodMetadata**](PodMetadata.md) | | [optional]

docs/JindoFuseSpec.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ Name | Type | Description | Notes
1010
**env** | **dict(str, str)** | Environment variables that will be used by Jindo Fuse | [optional]
1111
**image** | **str** | Image for Jindo Fuse(e.g. jindo/jindo-fuse) | [optional]
1212
**image_pull_policy** | **str** | One of the three policies: &#x60;Always&#x60;, &#x60;IfNotPresent&#x60;, &#x60;Never&#x60; | [optional]
13+
**image_pull_secrets** | [**list[V1LocalObjectReference]**](V1LocalObjectReference.md) | ImagePullSecrets that will be used to pull images | [optional]
1314
**image_tag** | **str** | Image Tag for Jindo Fuse(e.g. 2.3.0-SNAPSHOT) | [optional]
1415
**labels** | **dict(str, str)** | Labels will be added on all the JindoFS pods. DEPRECATED: this is a deprecated field. Please use PodMetadata.Labels instead. Note: this field is set to be exclusive with PodMetadata.Labels | [optional]
1516
**log_config** | **dict(str, str)** | | [optional]
17+
**metrics** | [**ClientMetrics**](ClientMetrics.md) | | [optional]
1618
**node_selector** | **dict(str, str)** | NodeSelector is a selector which must be true for the fuse client to fit on a node, this option only effect when global is enabled | [optional]
1719
**pod_metadata** | [**PodMetadata**](PodMetadata.md) | | [optional]
1820
**properties** | **dict(str, str)** | Configurable properties for Jindo System. &lt;br&gt; | [optional]

docs/JindoRuntimeSpec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
**clean_cache_policy** | [**CleanCachePolicy**](CleanCachePolicy.md) | | [optional]
88
**fuse** | [**JindoFuseSpec**](JindoFuseSpec.md) | | [optional]
99
**hadoop_config** | **str** | Name of the configMap used to support HDFS configurations when using HDFS as Jindo&#39;s UFS. The configMap must be in the same namespace with the JindoRuntime. The configMap should contain user-specific HDFS conf files in it. For now, only \&quot;hdfs-site.xml\&quot; and \&quot;core-site.xml\&quot; are supported. It must take the filename of the conf file as the key and content of the file as the value. | [optional]
10+
**image_pull_secrets** | [**list[V1LocalObjectReference]**](V1LocalObjectReference.md) | ImagePullSecrets that will be used to pull images | [optional]
1011
**jindo_version** | [**VersionSpec**](VersionSpec.md) | | [optional]
1112
**labels** | **dict(str, str)** | Labels will be added on all the JindoFS pods. DEPRECATED: this is a deprecated field. Please use PodMetadata.Labels instead. Note: this field is set to be exclusive with PodMetadata.Labels | [optional]
1213
**log_config** | **dict(str, str)** | | [optional]

docs/ObjectRef.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# ObjectRef
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**api_version** | **str** | API version of the referent operation | [optional]
7+
**kind** | **str** | Kind specifies the type of the referent operation | [default to '']
8+
**name** | **str** | Name specifies the name of the referent operation | [default to '']
9+
**namespace** | **str** | Namespace specifies the namespace of the referent operation. | [optional]
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/ThinCompTemplateSpec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**env** | [**list[V1EnvVar]**](V1EnvVar.md) | Environment variables that will be used by thinRuntime component. | [optional]
99
**image** | **str** | Image for thinRuntime fuse | [optional]
1010
**image_pull_policy** | **str** | One of the three policies: &#x60;Always&#x60;, &#x60;IfNotPresent&#x60;, &#x60;Never&#x60; | [optional]
11+
**image_pull_secrets** | [**list[V1LocalObjectReference]**](V1LocalObjectReference.md) | ImagePullSecrets that will be used to pull images | [optional]
1112
**image_tag** | **str** | Image for thinRuntime fuse | [optional]
1213
**liveness_probe** | [**V1Probe**](V1Probe.md) | | [optional]
1314
**network_mode** | **str** | Whether to use hostnetwork or not | [optional]

docs/ThinFuseSpec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**env** | [**list[V1EnvVar]**](V1EnvVar.md) | Environment variables that will be used by thinRuntime Fuse | [optional]
1010
**image** | **str** | Image for thinRuntime fuse | [optional]
1111
**image_pull_policy** | **str** | One of the three policies: &#x60;Always&#x60;, &#x60;IfNotPresent&#x60;, &#x60;Never&#x60; | [optional]
12+
**image_pull_secrets** | [**list[V1LocalObjectReference]**](V1LocalObjectReference.md) | ImagePullSecrets that will be used to pull images | [optional]
1213
**image_tag** | **str** | Image for thinRuntime fuse | [optional]
1314
**liveness_probe** | [**V1Probe**](V1Probe.md) | | [optional]
1415
**network_mode** | **str** | Whether to use hostnetwork or not | [optional]

docs/ThinRuntimeProfileSpec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**file_system_type** | **str** | file system of thinRuntime | [default to '']
88
**fuse** | [**ThinFuseSpec**](ThinFuseSpec.md) | | [optional]
9+
**image_pull_secrets** | [**list[V1LocalObjectReference]**](V1LocalObjectReference.md) | ImagePullSecrets that will be used to pull images | [optional]
910
**node_publish_secret_policy** | **str** | NodePublishSecretPolicy describes the policy to decide which to do with node publish secret when mounting an existing persistent volume. | [optional]
1011
**volumes** | [**list[V1Volume]**](V1Volume.md) | Volumes is the list of Kubernetes volumes that can be mounted by runtime components and/or fuses. | [optional]
1112
**worker** | [**ThinCompTemplateSpec**](ThinCompTemplateSpec.md) | | [optional]

docs/ThinRuntimeSpec.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**disable_prometheus** | **bool** | Disable monitoring for Runtime Prometheus is enabled by default | [optional]
88
**fuse** | [**ThinFuseSpec**](ThinFuseSpec.md) | | [optional]
9+
**image_pull_secrets** | [**list[V1LocalObjectReference]**](V1LocalObjectReference.md) | ImagePullSecrets that will be used to pull images | [optional]
910
**management** | [**RuntimeManagement**](RuntimeManagement.md) | | [optional]
1011
**profile_name** | **str** | The specific runtime profile name, empty value is used for handling datasets which mount another dataset | [optional]
1112
**replicas** | **int** | The replicas of the worker, need to be specified | [optional]

0 commit comments

Comments
 (0)