Skip to content

Commit 66e980d

Browse files
author
Natalie Arellano
committed
Move tools to operators how-to
Signed-off-by: Natalie Arellano <[email protected]>
1 parent 56d9346 commit 66e980d

File tree

14 files changed

+16
-13
lines changed

14 files changed

+16
-13
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $RECYCLE.BIN/
1717
*.iml
1818

1919
# Generated files
20-
content/docs/tools/pack/cli/pack*
20+
content/docs/for-platform-operators/how-to/integrate-ci/pack/cli/pack*
2121

2222
# Hugo
2323
.hugo_build.lock

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ install-ugo:
108108
.PHONY: pack-docs-update
109109
pack-docs-update: upgrade-pack
110110
@echo "> Updating Pack CLI Documentation"
111-
@echo "> SHA of contents (before update):" `find ./content/docs/tools/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
111+
@echo "> SHA of contents (before update):" `find ./content/docs/for-platform-operators/how-to/integrate-ci/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
112112
cd tools; go run -mod=mod get_pack_commands.go
113-
@echo "> SHA of contents (after update):" `find ./content/docs/tools/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
113+
@echo "> SHA of contents (after update):" `find ./content/docs/for-platform-operators/how-to/integrate-ci/pack -type f -print0 | xargs -0 sha1sum | sha1sum | cut -d' ' -f1`
114114

115115
.PHONY: pack-version
116116
pack-version: export PACK_VERSION:=$(PACK_VERSION)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
+++
2+
title="Integrate with your favorite CI tooling"
3+
weight=1
4+
expand=false
5+
include_summaries=true
6+
+++

content/docs/tools/circleci.md renamed to content/docs/for-platform-operators/how-to/integrate-ci/circleci.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title="CircleCI"
3+
weight=3
34
+++
45

56
[CircleCI][circleci] is a continuous integration and delivery platform. The CNB project maintains an integration, called an [orb](https://circleci.com/orbs/),

content/docs/tools/gitlab.md renamed to content/docs/for-platform-operators/how-to/integrate-ci/gitlab.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title="Gitlab Auto DevOps"
3+
weight=4
34
+++
45

56
[Gitlab][about-gitlab] is a web based DevOps platform. It uses [`pack`][pack] as part of the [Auto DevOps][devops] feature, to

content/docs/tools/kpack.md renamed to content/docs/for-platform-operators/how-to/integrate-ci/kpack.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title="kpack"
3+
weight=2
34
+++
45

56
[kpack][kpack] is a Kubernetes native platform, belonging to the [Buildpacks Community](https://github.com/buildpacks-community) organization. It utilizes unprivileged Kubernetes primitives to provide builds of OCI images as a platform implementation of Cloud Native Buildpacks (CNB).

content/docs/tools/pack/_index.md renamed to content/docs/for-platform-operators/how-to/integrate-ci/pack/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title="Pack"
33
include_summaries=false
44
expand=false
55
aliases=["/docs/install-pack/", "/docs/tools/pack/cli/install/"]
6-
weight=100
6+
weight=1
77
+++
88

99
Pack is a tool maintained by the Cloud Native Buildpacks project to support the use of buildpacks.

content/docs/tools/piper.md renamed to content/docs/for-platform-operators/how-to/integrate-ci/piper.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title='Project "Piper"'
3+
weight=5
34
+++
45

56
[Project "Piper"][piper] (maintained by [SAP][sap]) is a set of ready-made Continuous Delivery pipelines for direct use in your project. It now also implements the CNB Platform spec as a step and makes it available in your Jenkins pipeline.

content/docs/tools/tekton.md renamed to content/docs/for-platform-operators/how-to/integrate-ci/tekton.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
+++
22
title="Tekton"
3+
weight=6
34
+++
45

56
[Tekton][tekton] is an open-source CI/CD system platform implementation running on k8s. There are two Tekton `tasks`

content/docs/tools/_index.md

-8
This file was deleted.

tools/get_pack_commands.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
)
1616

1717
const (
18-
cliDir = "/docs/tools/pack/cli/"
18+
cliDir = "/docs/for-platform-operators/how-to/integrate-ci/pack/cli/"
1919
outputPath = "../content" + cliDir
2020
indexFile = `_index.md`
2121

0 commit comments

Comments
 (0)