From a1f26aa3a8b800e4f7dc40b77d667f7e222c6f25 Mon Sep 17 00:00:00 2001 From: Steve Kriss Date: Mon, 20 May 2019 13:26:44 -0600 Subject: [PATCH] remove obsolete code for generating CLI ref docs (breaks go test ./...) Signed-off-by: Steve Kriss --- site/docs/v0.3.0/generate/ark.go | 39 -------------------------------- site/docs/v0.4.0/generate/ark.go | 39 -------------------------------- site/docs/v0.5.0/generate/ark.go | 39 -------------------------------- site/docs/v0.6.0/generate/ark.go | 39 -------------------------------- site/docs/v0.7.0/generate/ark.go | 39 -------------------------------- site/docs/v0.7.1/generate/ark.go | 39 -------------------------------- site/docs/v0.8.0/generate/ark.go | 39 -------------------------------- site/docs/v0.8.1/generate/ark.go | 39 -------------------------------- site/docs/v0.9.0/generate/ark.go | 39 -------------------------------- 9 files changed, 351 deletions(-) delete mode 100644 site/docs/v0.3.0/generate/ark.go delete mode 100644 site/docs/v0.4.0/generate/ark.go delete mode 100644 site/docs/v0.5.0/generate/ark.go delete mode 100644 site/docs/v0.6.0/generate/ark.go delete mode 100644 site/docs/v0.7.0/generate/ark.go delete mode 100644 site/docs/v0.7.1/generate/ark.go delete mode 100644 site/docs/v0.8.0/generate/ark.go delete mode 100644 site/docs/v0.8.1/generate/ark.go delete mode 100644 site/docs/v0.9.0/generate/ark.go diff --git a/site/docs/v0.3.0/generate/ark.go b/site/docs/v0.3.0/generate/ark.go deleted file mode 100644 index 3d716cdbd..000000000 --- a/site/docs/v0.3.0/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 Heptio Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/spf13/cobra/doc" - "github.com/heptio/ark/pkg/cmd/ark" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.4.0/generate/ark.go b/site/docs/v0.4.0/generate/ark.go deleted file mode 100644 index d64cf8d2a..000000000 --- a/site/docs/v0.4.0/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 Heptio Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.5.0/generate/ark.go b/site/docs/v0.5.0/generate/ark.go deleted file mode 100644 index d64cf8d2a..000000000 --- a/site/docs/v0.5.0/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 Heptio Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.6.0/generate/ark.go b/site/docs/v0.6.0/generate/ark.go deleted file mode 100644 index d64cf8d2a..000000000 --- a/site/docs/v0.6.0/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 Heptio Inc. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.7.0/generate/ark.go b/site/docs/v0.7.0/generate/ark.go deleted file mode 100644 index 01af58a7c..000000000 --- a/site/docs/v0.7.0/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 the Heptio Ark contributors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.7.1/generate/ark.go b/site/docs/v0.7.1/generate/ark.go deleted file mode 100644 index 01af58a7c..000000000 --- a/site/docs/v0.7.1/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 the Heptio Ark contributors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.8.0/generate/ark.go b/site/docs/v0.8.0/generate/ark.go deleted file mode 100644 index 01af58a7c..000000000 --- a/site/docs/v0.8.0/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 the Heptio Ark contributors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.8.1/generate/ark.go b/site/docs/v0.8.1/generate/ark.go deleted file mode 100644 index 01af58a7c..000000000 --- a/site/docs/v0.8.1/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 the Heptio Ark contributors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -} diff --git a/site/docs/v0.9.0/generate/ark.go b/site/docs/v0.9.0/generate/ark.go deleted file mode 100644 index 01af58a7c..000000000 --- a/site/docs/v0.9.0/generate/ark.go +++ /dev/null @@ -1,39 +0,0 @@ -/* -Copyright 2017 the Heptio Ark contributors. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -*/ - -package main - -import ( - "log" - "os" - - "github.com/heptio/ark/pkg/cmd/ark" - "github.com/spf13/cobra/doc" -) - -func main() { - cmdName := os.Args[1] - outputDir := os.Args[2] - - cmd := ark.NewCommand(cmdName) - // Remove auto-generated timestamps - cmd.DisableAutoGenTag = true - - err := doc.GenMarkdownTree(cmd, outputDir) - if err != nil { - log.Fatal(err) - } -}