tapis-pods 0.3.1

The Pods Service is a web service and distributed computing platform providing pods-as-a-service (PaaS). The service implements a message broker and processor model that requests pods, alongside a health module to poll for pod data, including logs, status, and health. The primary use of this service is to have quick to deploy long-lived services based on Docker images that are exposed via HTTP or TCP endpoints listed by the API. **The Pods service provides functionality for two types of pod solutions:** * **Templated Pods** for run-as-is popular images. Neo4J is one example, the template manages TCP ports, user creation, and permissions. * **Custom Pods** for arbitrary docker images with less functionality. In this case we will expose port 5000 and do nothing else. The live-docs act as the most up-to-date API reference. Visit the [documentation for more information](https://tapis.readthedocs.io/en/latest/technical/pods.html).
Documentation
# VolumeMountsValue

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**r#type** | **String** | Type of mount: 'tapisvolume', 'tapissnapshot', 'ephemeral', or 'pvc'. | 
**source_id** | Option<**String**> |  | [optional]
**mounted_by** | Option<**String**> |  | [optional]
**sub_path** | Option<**String**> | Sub-path within the source volume/snapshot to mount. Not used for ephemeral. | [optional][default to ]
**read_only** | Option<**bool**> |  | [optional]
**config_content** | Option<**String**> |  | [optional]
**config_permissions** | Option<**String**> | Unix file permissions for config file (e.g., '0644', '0600'). | [optional][default to 0644]
**config_filename** | Option<**String**> |  | [optional]
**config_update_mode** | Option<**String**> | Config update behavior: 'always' recreates config on each pod start, 'once' only creates if file/ConfigMap doesn't exist. | [optional][default to always]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)