Skip to content

Commit

Permalink
Align Kubernetes docs references formatting (#2560)
Browse files Browse the repository at this point in the history
Co-authored-by: Mauricio Alvarez Leon <65101411+BBBmau@users.noreply.github.com>
  • Loading branch information
arybolovlev and BBBmau authored Aug 9, 2024
1 parent e486966 commit 3dcfe26
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kubernetes/data_source_kubernetes_pod_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func dataSourceKubernetesPodV1() *schema.Resource {
// being mutated on the server side as Kubernetes automatically adds a mount
// for the service account token
return &schema.Resource{
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/)",
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/.",
ReadContext: dataSourceKubernetesPodV1Read,

Schema: map[string]*schema.Schema{
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/data_source_kubernetes_service_account_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

func dataSourceKubernetesServiceAccountV1() *schema.Resource {
return &schema.Resource{
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/)",
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/.",
ReadContext: dataSourceKubernetesServiceAccountV1Read,

Schema: map[string]*schema.Schema{
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/resource_kubernetes_namespace_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

func resourceKubernetesNamespaceV1() *schema.Resource {
return &schema.Resource{
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/)",
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/.",
CreateContext: resourceKubernetesNamespaceV1Create,
ReadContext: resourceKubernetesNamespaceV1Read,
UpdateContext: resourceKubernetesNamespaceV1Update,
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/resource_kubernetes_persistent_volume_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const (

func resourceKubernetesPersistentVolumeV1() *schema.Resource {
return &schema.Resource{
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/)",
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/.",
CreateContext: resourceKubernetesPersistentVolumeV1Create,
ReadContext: resourceKubernetesPersistentVolumeV1Read,
UpdateContext: resourceKubernetesPersistentVolumeV1Update,
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/resource_kubernetes_pod_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (

func resourceKubernetesPodV1() *schema.Resource {
return &schema.Resource{
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/)",
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/.",
CreateContext: resourceKubernetesPodV1Create,
ReadContext: resourceKubernetesPodV1Read,
UpdateContext: resourceKubernetesPodV1Update,
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/resource_kubernetes_service_account_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (

func resourceKubernetesServiceAccountV1() *schema.Resource {
return &schema.Resource{
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/)",
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/.",
CreateContext: resourceKubernetesServiceAccountV1Create,
ReadContext: resourceKubernetesServiceAccountV1Read,
UpdateContext: resourceKubernetesServiceAccountV1Update,
Expand Down

0 comments on commit 3dcfe26

Please sign in to comment.