Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
xJustin committed Nov 4, 2021
1 parent 1a3e0c2 commit a58273f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions cmd/gendoc/main.go
Expand Up @@ -63,8 +63,14 @@ func main() {
sort.Strings(keys)
_, err = mdf.WriteString(
"# Insights Operator Gathered Data\n\n" +
"This document is auto-generated by `make docs`, and details what data Insights Operator (IO) gathers from a cluster, the location where it is stored in the IO archive, and the applicable version(s) of OpenShift. Data stored in the `conditional/` directory is only gathered when certain conditions are met.\n\n" +
"The IO pod operates in the `openshift-insights` namespace and the archives are packaged as `.tar.gz` files in `/var/lib/insights-operator`.\n" +
"This document is auto-generated by `make docs`, and details what data" +
" Insights Operator (IO) gathers from a cluster, the location where it" +
" is stored in the IO archive, and the applicable version(s) of " +
"OpenShift. Data stored in the `conditional/` directory is only " +
"gathered when certain conditions are met.\n\n" +
"The IO pod operates in the `openshift-insights` namespace and the " +
"archives are packaged as `.tar.gz` files in " +
"`/var/lib/insights-operator`.\n" +
"***\n\n")
if err != nil {
fmt.Print(err)
Expand Down

0 comments on commit a58273f

Please sign in to comment.