From 23dd3522e933202e00a01bab1588d34bdd3f8db0 Mon Sep 17 00:00:00 2001 From: Manabu Mccloskey Date: Fri, 8 Dec 2023 01:07:57 +0000 Subject: [PATCH] clean up comments Signed-off-by: Manabu Mccloskey --- api/v1alpha1/custom_package_types.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/api/v1alpha1/custom_package_types.go b/api/v1alpha1/custom_package_types.go index b3ef4b73..aaaf790b 100644 --- a/api/v1alpha1/custom_package_types.go +++ b/api/v1alpha1/custom_package_types.go @@ -21,13 +21,13 @@ type CustomPackageList struct { // CustomPackageSpec controls the installation of the custom applications. type CustomPackageSpec struct { - //// Type specifies what kind of package this is. local means local files specified in the Directory field must be synced to a Git Repository - //Type string `json:"type"` // Replicate specifies whether to replicate remote or local contents to the local gitea server. Replicate bool `json:"replicate"` - // GitServerURL specifies the base URL for the git server for API calls. for example, http://gitea.cnoe.localtest.me:8880 + // GitServerURL specifies the base URL for the git server for API calls. + // for example, http://gitea.cnoe.localtest.me:8880 GitServerURL string `json:"gitServerURL"` - // InternalGitServeURL specifies the base URL for the git server accessible within the cluster. for example, http://my-gitea-http.gitea.svc.cluster.local:3000 + // InternalGitServeURL specifies the base URL for the git server accessible within the cluster. + // for example, http://my-gitea-http.gitea.svc.cluster.local:3000 InternalGitServeURL string `json:"internalGitServeURL"` GitServerAuthSecretRef SecretReference `json:"gitServerAuthSecretRef"`