Skip to content

Commit 3dcfe26

Browse files
arybolovlevBBBmau
andauthored
Align Kubernetes docs references formatting (#2560)
Co-authored-by: Mauricio Alvarez Leon <[email protected]>
1 parent e486966 commit 3dcfe26

6 files changed

+6
-6
lines changed

kubernetes/data_source_kubernetes_pod_v1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func dataSourceKubernetesPodV1() *schema.Resource {
1919
// being mutated on the server side as Kubernetes automatically adds a mount
2020
// for the service account token
2121
return &schema.Resource{
22-
Description: "A pod is a group of one or more containers, the shared storage for those containers, and options about how to run the containers. Pods are always co-located and co-scheduled, and run in a shared context.Read more at [Kubernetes reference](https://kubernetes.io/docs/concepts/workloads/pods/pod/)",
22+
Description: "A pod is a group of one or more containers, the shared storage for those containers, and options about how to run the containers. Pods are always co-located and co-scheduled, and run in a shared context. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod/.",
2323
ReadContext: dataSourceKubernetesPodV1Read,
2424

2525
Schema: map[string]*schema.Schema{

kubernetes/data_source_kubernetes_service_account_v1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
func dataSourceKubernetesServiceAccountV1() *schema.Resource {
1717
return &schema.Resource{
18-
Description: "A service account provides an identity for processes that run in a Pod. This data source reads the service account and makes specific attributes available to Terraform. Read more at [Kubernetes reference](https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/)",
18+
Description: "A service account provides an identity for processes that run in a Pod. This data source reads the service account and makes specific attributes available to Terraform. More info: https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/.",
1919
ReadContext: dataSourceKubernetesServiceAccountV1Read,
2020

2121
Schema: map[string]*schema.Schema{

kubernetes/resource_kubernetes_namespace_v1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
func resourceKubernetesNamespaceV1() *schema.Resource {
2323
return &schema.Resource{
24-
Description: "Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called namespaces. Read more about namespaces at [Kubernetes reference](https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/)",
24+
Description: "Kubernetes supports multiple virtual clusters backed by the same physical cluster. These virtual clusters are called namespaces. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/.",
2525
CreateContext: resourceKubernetesNamespaceV1Create,
2626
ReadContext: resourceKubernetesNamespaceV1Read,
2727
UpdateContext: resourceKubernetesNamespaceV1Update,

kubernetes/resource_kubernetes_persistent_volume_v1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const (
2929

3030
func resourceKubernetesPersistentVolumeV1() *schema.Resource {
3131
return &schema.Resource{
32-
Description: "The resource provides a piece of networked storage in the cluster provisioned by an administrator. It is a resource in the cluster just like a node is a cluster resource. Persistent Volumes have a lifecycle independent of any individual pod that uses the PV. For more info see [Kubernetes reference](https://kubernetes.io/docs/concepts/storage/persistent-volumes/)",
32+
Description: "The resource provides a piece of networked storage in the cluster provisioned by an administrator. It is a resource in the cluster just like a node is a cluster resource. Persistent Volumes have a lifecycle independent of any individual pod that uses the PV. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/.",
3333
CreateContext: resourceKubernetesPersistentVolumeV1Create,
3434
ReadContext: resourceKubernetesPersistentVolumeV1Read,
3535
UpdateContext: resourceKubernetesPersistentVolumeV1Update,

kubernetes/resource_kubernetes_pod_v1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222

2323
func resourceKubernetesPodV1() *schema.Resource {
2424
return &schema.Resource{
25-
Description: "A pod is a group of one or more containers, the shared storage for those containers, and options about how to run the containers. Pods are always co-located and co-scheduled, and run in a shared context. Read more at [Kubernetes reference](https://kubernetes.io/docs/concepts/workloads/pods/pod/)",
25+
Description: "A pod is a group of one or more containers, the shared storage for those containers, and options about how to run the containers. Pods are always co-located and co-scheduled, and run in a shared context. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod/.",
2626
CreateContext: resourceKubernetesPodV1Create,
2727
ReadContext: resourceKubernetesPodV1Read,
2828
UpdateContext: resourceKubernetesPodV1Update,

kubernetes/resource_kubernetes_service_account_v1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424

2525
func resourceKubernetesServiceAccountV1() *schema.Resource {
2626
return &schema.Resource{
27-
Description: "A service account provides an identity for processes that run in a Pod. Read more at [Kubernetes reference](https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/)",
27+
Description: "A service account provides an identity for processes that run in a Pod. More info: https://kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/.",
2828
CreateContext: resourceKubernetesServiceAccountV1Create,
2929
ReadContext: resourceKubernetesServiceAccountV1Read,
3030
UpdateContext: resourceKubernetesServiceAccountV1Update,

0 commit comments

Comments
 (0)