From 1cec6095864f9f2c84bfde82a7983b3625ff2ba5 Mon Sep 17 00:00:00 2001 From: Mitsuhiro Tanino Date: Fri, 2 Jun 2017 17:53:19 -0400 Subject: [PATCH 1/2] Add fibre channel volume explanation (#3967) * Add fibre channel volume explanation This patch adds explanation of fibre channel volume including usage of multiple WWNs. Fix #33602 * Fix typos --- docs/concepts/storage/volumes.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/concepts/storage/volumes.md b/docs/concepts/storage/volumes.md index d21143f2d3..bc6b52c5cf 100644 --- a/docs/concepts/storage/volumes.md +++ b/docs/concepts/storage/volumes.md @@ -74,6 +74,7 @@ Kubernetes supports several types of Volumes: * `awsElasticBlockStore` * `nfs` * `iscsi` + * `fc (fibre channel)` * `flocker` * `glusterfs` * `rbd` @@ -320,6 +321,19 @@ simultaneous writers allowed. See the [iSCSI example](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples/volumes/iscsi) for more details. +### fc (fibre channel) + +An `fc` volume allows an existing fibre channel volume to be mounted into your pod. +You can specify single or multiple target World Wide Names to the parameter +targetWWNs in your volume configuration. If multiple WWNs are specified, +targetWWNs expects that those WWNs form multipath connection. + +__Important: You must configure FC SAN Zoning to allocate and mask those +LUNs (volumes) to the target WWNs beforehand so that Kubernetes hosts +can access them__ + +See the [FC example](https://github.com/kubernetes/kubernetes/tree/{{page.githubbranch}}/examples/volumes/fibre_channel) for more details. + ### flocker [Flocker](https://clusterhq.com/flocker) is an open-source clustered container data volume manager. It provides management From 8117b56cc69cfd6ba8cc99930be20ab08b109e10 Mon Sep 17 00:00:00 2001 From: Ryan McGinnis Date: Fri, 2 Jun 2017 15:01:05 -0700 Subject: [PATCH 2/2] Remove self-referential link The second link in the "What's next" section redirects the reader to this doc. This PR removes this link. --- .../run-application/run-stateless-application-deployment.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/tasks/run-application/run-stateless-application-deployment.md b/docs/tasks/run-application/run-stateless-application-deployment.md index 8620ecad58..988dc6c808 100644 --- a/docs/tasks/run-application/run-stateless-application-deployment.md +++ b/docs/tasks/run-application/run-stateless-application-deployment.md @@ -146,8 +146,6 @@ added to Kubernetes, replicated applications were configured by using a * Learn more about [Deployment objects](/docs/concepts/workloads/controllers/deployment/). -* Learn more about [Deploying applications](/docs/user-guide/deploying-applications/) - {% endcapture %} {% include templates/tutorial.md %}