Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4386859

Browse files
committed
Update x-refs
1 parentfd5ab12 commit4386859

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

‎_docs/ci-cd-guides/helm-best-practices.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Here is a list of important Helm points that are often controversial between tea
6363

6464
###Helm repositories are optional
6565

66-
Using Helm repositories is a recommended practice, but completely optional. You can deploy a Helm chart to a Kubernetes cluster directly from the filesystem. The[quick start guide]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/) describes this scenario.
66+
Using Helm repositories is a recommended practice, but completely optional. You can deploy a Helm chart to a Kubernetes cluster directly from the filesystem. The[quick start guide]({{site.baseurl}}/docs/quick-start/deploy-with-helm/) describes this scenario.
6767

6868
Helm can install a chart either in the package (`.tgz`) or unpackaged (tree of files) to a Kubernetes cluster right away. Thus, the most minimal Helm pipeline has only two steps:
6969

@@ -360,7 +360,7 @@ There are different pipelines for:
360360
While this workflow is very flexible, it adds complexity on the number of Helm charts available (since they exist in multiple Helm repositories). You also need to set up the parameters between the different pipelines so that Helm charts to be deployed can be indeed found in the expected Helm repository.
361361

362362
##Related articles
363-
[Helm quick start guide]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/)
363+
[Helm quick start guide]({{site.baseurl}}/docs/quick-start/deploy-with-helm/)
364364
[Using Helm in a Codefresh pipeline]({{site.baseurl}}/docs/deployments/helm/using-helm-in-codefresh-pipeline/)
365365
[Helm Dashboard]({{site.baseurl}}/docs/deployments/helm/helm-releases-management)
366366
[Helm Promotion boards]({{site.baseurl}}/docs/deployments/helm/helm-environment-promotion)

‎_docs/ci-cd-guides/kubernetes-templating.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Once you start working with Kubernetes you will see the need for using templates
1515

1616
Kubernetes does not provide any templating mechanism on its own. Deployed manifests are expected to be static yaml files. An external solution is needed if you want to pass parameters in your manifests.
1717

18-
The proper way to handle templates is within[Helm]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/). Helm is the package manager for Kubernetes and also includes templating capabilities.
18+
The proper way to handle templates is within[Helm]({{site.baseurl}}/docs/quick-start/ci-quickstart/deploy-with-helm/). Helm is the package manager for Kubernetes and also includes templating capabilities.
1919

2020
To use templates without using Helm, there are several templating solutions available including[Kustomize](https://github.com/kubernetes-sigs/kustomize){:target="\_blank"} from Google.
2121

‎_docs/deployments/helm/custom-helm-uploads.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Helm packages are just TAR files. Helm repositories are simple file hierarchies
1212
You can run custom commands and manually upload indexes and packages to a Helm repo.
1313

1414
>This articles shows some non-standard Helm examples.
15-
For the basic use cases, or if you are just getting started with Helm, see our[Helm quick start guide]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/) and[Using Helm in pipelines]({{site.baseurl}}/docs/deployments/helm/using-helm-in-codefresh-pipeline/).
15+
For the basic use cases, or if you are just getting started with Helm, see our[Helm quick start guide]({{site.baseurl}}/docs/quick-start/ci-quickstart/deploy-with-helm/) and[Using Helm in pipelines]({{site.baseurl}}/docs/deployments/helm/using-helm-in-codefresh-pipeline/).
1616

1717
##Package a Helm chart
1818
Below is an example of a freestyle step in a Codefresh pipeline that packages the Helm chart and then extracts the chart name from the command output. It also saves that package name in an environment variable for later use.

‎_docs/deployments/helm/using-helm-in-codefresh-pipeline.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ We created a [special Helm step](https://codefresh.io/steps/step/helm){:target="
1414
>If you have a special use case that is not covered by the Codefresh Helm step, you can always use the regular`helm` cli in a freestyle step.
1515
In this case, you can use the simpler container`codefresh/kube-helm` which includes only Kubectl and helm tools.`kube-helm` is available on DockerHub:[https://hub.docker.com/r/codefresh/kube-helm/](https://hub.docker.com/r/codefresh/kube-helm/){:target="\_blank"}.
1616

17-
If you are just starting with Helm, refer to our[Helm quick start guide]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/). And, if you prefer to work directly with code, see our[full Helm example]({{site.baseurl}}/docs/example-catalog/cd-examples/helm/).
17+
If you are just starting with Helm, refer to our[Helm quick start guide]({{site.baseurl}}/docs/quick-start/ci-quickstart/deploy-with-helm/). And, if you prefer to work directly with code, see our[full Helm example]({{site.baseurl}}/docs/example-catalog/cd-examples/helm/).
1818

1919
##Helm setup
2020

‎_docs/deployments/kubernetes/deployment-options-to-kubernetes.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Codefresh offers several options when it comes to Kubernetes deployments:
2424
1. Using a[freestyle]({{site.baseurl}}/docs/codefresh-yaml/steps/freestyle/) step with your own`kubectl` commands
2525
This deployment option gives you great flexibility, but assumes that you know how to work with`kubectl`. See[Custom kubectl commands]({{site.baseurl}}/docs/deployments/kubernetes/custom-kubectl-commands/).
2626
1. Using Helm as a package manager
27-
See our[Helm quick start guide]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/).
27+
See our[Helm quick start guide]({{site.baseurl}}/docs/quick-start/ci-quickstart/deploy-with-helm/).
2828

2929
##Prerequisites
3030

‎_docs/integrations/helm.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Native support for Helm in Codefresh includes:
1616
* A dashboard for[Helm environments]({{site.baseurl}}/docs/deployments/kubernetes/environment-dashboard/)
1717

1818
The built-in Helm repository is production ready. You can start using Helm right away with your Codefresh account,
19-
even if you don't have an external Helm repository. See our[quick start guide for Helm]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/) or the[complete Helm example]({{site.baseurl}}/docs/example-catalog/cd-examples/helm/).
19+
even if you don't have an external Helm repository. See our[quick start guide for Helm]({{site.baseurl}}/docs/quick-start/ci-quickstart/deploy-with-helm/) or the[complete Helm example]({{site.baseurl}}/docs/example-catalog/cd-examples/helm/).
2020

2121
For each Helm integration, you can toggle the level of access by[non-admin users]({{site.baseurl}}/docs/administration/access-control/#users-and-administrators).
2222

‎_docs/pipelines/running-pipelines-locally.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title:"Running pipelines locally"
33
description:"How to run Codefresh pipelines on your workstation"
4-
group:configure-ci-cd-pipeline
4+
group:pipelines
55
toc:true
66
redirect_from:
77
-/docs/troubleshooting/common-issues/debugging-codefresh-builds-locally/

‎_docs/pipelines/service-containers.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title:"Service containers inCIpipelines"
2+
title:"Service containers in pipelines"
33
description:"How to use sidecar services in your pipelines"
44
group:pipelines
55
toc:true

‎_docs/pipelines/steps/deploy.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ It has two modes:
1717
automatically update the service/deployment with the new docker image.
1818
1. Using the`file_path` option. In this case you provide your own Kubernetes manifest and Codefresh deploys it as-is. It is**your
1919
own responsibility** to do[custom replacements]({{site.baseurl}}/docs/deploy-to-kubernetes/kubernetes-templating/) here (for example using[awk](https://en.wikipedia.org/wiki/AWK),[sed](https://www.gnu.org/software/sed/manual/sed.html) or[yq](http://mikefarah.github.io/yq/)). The deploy step is also using the[Codefresh templating mechanism]({{site.baseurl}}/docs/deploy-to-kubernetes/kubernetes-templating/#using-the-codefresh-deploy-image) behind the scenes if you want to take advantage of it. For a full templating solution we also
20-
suggest you look at[Helm]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/).
20+
suggest you look at[Helm]({{site.baseurl}}/docs/quick-start/ci-quickstart/deploy-with-helm/).
2121

2222
You need to define either one of these fields in the deploy step. If you define`service` you also can select the exact Docker image
2323
with the`candidate` field (otherwise Codefresh will just reuse the docker image defined in the existing deployment)
@@ -174,7 +174,7 @@ If you find the deploy step limited, feel free to look at the other deployment o
174174

175175
*[The cf-deploy-kubernetes step]({{site.baseurl}}/docs/deploy-to-kubernetes/kubernetes-templating/)
176176
*[Custom kubectl commands]({{site.baseurl}}/docs/deploy-to-kubernetes/custom-kubectl-commands/)
177-
*[Helm]({{site.baseurl}}/docs/getting-started/helm-quick-start-guide/)
177+
*[Helm]({{site.baseurl}}/docs/quick-start/ci-quickstart/deploy-with-helm/)
178178

179179
##Related articles
180180
[Kubernetes Quick start guide]({{site.baseurl}}/docs/getting-started/deployment-to-kubernetes-quick-start-guide/)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp