added Service Fabric Mesh provider
This commit is contained in:
14
README.md
14
README.md
@@ -23,6 +23,7 @@ The best description is "Kubernetes API on top, programmable back."
|
||||
+ [Azure Batch GPU Provider](./providers/azurebatch/README.md)
|
||||
+ [AWS Fargate Provider](#aws-fargate-provider)
|
||||
+ [Hyper.sh Provider](#hypersh-provider)
|
||||
+ [Service Fabric Mesh Provider](#service-fabric-mesh-provider)
|
||||
+ [Adding a New Provider via the Provider Interface](#adding-a-new-provider-via-the-provider-interface)
|
||||
* [Testing](#testing)
|
||||
+ [Testing the Azure Provider Client](#testing-the-azure-provider-client)
|
||||
@@ -143,6 +144,19 @@ Kubernetes cluster.
|
||||
./bin/virtual-kubelet --provider hyper
|
||||
```
|
||||
|
||||
### Service Fabric Mesh Provider
|
||||
|
||||
The Service Fabric Mesh Provider allows you to deploy pods to Azure [Service Fabric Mesh](https://docs.microsoft.com/en-us/azure/service-fabric-mesh/service-fabric-mesh-overview).
|
||||
|
||||
Service Fabric Mesh is a fully managed service that lets developers deploy microservices without managing the underlying infrastructure.
|
||||
Pods deployed to Service Fabric Mesh will be assigned Public IPs from the Service Fabric Mesh network.
|
||||
|
||||
```
|
||||
./bin/virtual-kubelet --provider sfmesh --taint azure.com/sfmesh
|
||||
```
|
||||
|
||||
More detailed instructions can be found [here](providers/sfmesh/README.md).
|
||||
|
||||
### Adding a New Provider via the Provider Interface
|
||||
|
||||
The structure we chose allows you to have all the power of the Kubernetes API
|
||||
|
||||
Reference in New Issue
Block a user