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

Commit5a5f47c

Browse files
Cf broken links (#583)
* Fix broken links* Fix broken links* Fix broken links---------Co-authored-by: NimRegev <nima.regev@codefresh.io>
1 parent29e35de commit5a5f47c

File tree

37 files changed

+464
-636
lines changed

37 files changed

+464
-636
lines changed

‎_docs/ci-cd-guides/gitops-deployments.md‎

Lines changed: 304 additions & 480 deletions
Large diffs are not rendered by default.

‎_docs/ci-cd-guides/progressive-delivery.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ by simply telling the load balancer to move 100% of traffic back to the previous
449449
{% include image.html
450450
lightbox="true"
451451
file="/images/guides/progressive-delivery/04_canary_finished.png"
452-
url="/images/guides/progressive-delivery/04_canary_finished"
452+
url="/images/guides/progressive-delivery/04_canary_finished.png"
453453
alt="Old application version is discarded. Only new version remains."
454454
caption="Old application version is discarded. Only new version remains."
455455
max-width="90%"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ This pipeline references some predefined environment variables such as `GOOGLE_B
7979
For this example, we created a service account with appropriate permissions in Google Cloud, and saved the credentials into`GOOGLE_CREDENTIALS` as a Codefresh Secret. <br>
8080
For more information, see:
8181
[Authenticating with Google services](https://cloud.google.com/storage/docs/authentication#service_accounts){:target="_blank"}
82-
[Codefresh pipeline configuration and secrets]({{site.baseurl}}/pipelines/variables/#user-provided-variables)
82+
[Codefresh pipeline configuration and secrets]({{site.baseurl}}/pipelines/variables/#user-defined-variables)
8383

8484
##Example 2: Push the chart to Chart Museum
8585
Chart Museum is a Helm repository*server* that has an HTTP API, pluggable backends, authentication, and more.

‎_docs/example-catalog/ci-examples/build-an-image-from-a-different-git-repository.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,5 +92,5 @@ Notice that there are no explicit push steps in the pipeline, as all successful
9292
[Git clone step]({{site.baseurl}}/docs/pipelines/steps/git-clone/)
9393
[Build an Image with the Dockerfile in root directory]({{site.baseurl}}/docs/example-catalog/ci-examples/build-an-image-with-the-dockerfile-in-root-directory/)
9494
[Build step in pipelines in pipelines]({{site.baseurl}}/docs/pipelines/steps/build/)
95-
[Build and push an image]({{site.baseurl}}/docs/pipelines/example-catalog/ci-examples/build-and-push-an-image/)
95+
[Build and push an image]({{site.baseurl}}/docs/example-catalog/ci-examples/build-and-push-an-image/)
9696
[Parallel pipelines]({{site.baseurl}}/docs/pipelines/advanced-workflows/)

‎_docs/example-catalog/ci-examples/build-an-image-specify-dockerfile-location.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You may have a project where the Dockerfile is **not** in the root folder of the
1313

1414
>The source code of the repository is at[https://github.com/codefreshdemo/cf-example-dockerfile-other-location](https://github.com/codefreshdemo/cf-example-dockerfile-other-location){:target="\_blank"}. Feel free to fork it if you want to follow along.
1515
16-
If you don't have a Codefresh account already, you can easily create a free one from the[sign-up page]({{site.baseurl}}/docs/administration/account-user-management/create-a-codefresh-account/).
16+
If you don't have a Codefresh account already, you can easily create a free one from the[sign-up page]({{site.baseurl}}/docs/administration/account-user-management/create-codefresh-account/).
1717

1818

1919
##Building a Dockerfile from a different folder
@@ -68,7 +68,7 @@ You could also change the Docker build context by editing the `working_directory
6868

6969
##Related articles
7070
[CI/CD pipeline examples]({{site.baseurl}}/docs/example-catalog/examples/#ci-examples)
71-
[Build an Image with the Dockerfile in root directory]({{site.baseurl}}/docs/example-catalog/ci-examples/build-an-image-dockerfile-in-root-directory/)
71+
[Build an Image with the Dockerfile in root directory]({{site.baseurl}}/docs/example-catalog/ci-examples/build-an-image-with-the-dockerfile-in-root-directory/)
7272
[Build an Image from a different Git repository]({{site.baseurl}}/docs/example-catalog/ci-examples/build-an-image-from-a-different-git-repository)
7373
[Build and push an Image]({{site.baseurl}}/docs/example-catalog/ci-examples/build-and-push-an-image)
7474
[Build an Image With build arguments]({{site.baseurl}}/docs/example-catalog/ci-examples/build-an-image-with-build-arguments)

‎_docs/example-catalog/ci-examples/build-an-image-with-the-dockerfile-in-root-directory.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Building a Docker image is one of the basic operations in Codefresh pipelines.
1313

1414
>The source code of the repository is at[https://github.com/codefreshdemo/cf-yml-example-build-dockerfile-inroot](https://github.com/codefreshdemo/cf-yml-example-build-dockerfile-inroot){:target="\_blank"}. Feel free to fork it if you want to follow along.
1515
16-
If you don't have a Codefresh account already, you can easily create a free one from the[sign-up page]({{site.baseurl}}/docs/administration/account-user-management/create-a-codefresh-account/).
16+
If you don't have a Codefresh account already, you can easily create a free one from the[sign-up page]({{site.baseurl}}/docs/administration/account-user-management/create-codefresh-account/).
1717

1818

1919
##Building a Dockerfile from the root folder

‎_docs/example-catalog/ci-examples/fan-in-fan-out.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You can achieve parallelism in your Codefresh pipelines by using the following:
2929

3030
##Prerequisites
3131

32-
- A[Codefresh account]({{site.baseurl}}/_docs/administration/account-user-management/create-codefresh-account/)
32+
- A[Codefresh account]({{site.baseurl}}/docs/administration/account-user-management/create-codefresh-account/)
3333

3434
##Example project
3535

‎_docs/example-catalog/ci-examples/publish-jar.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ toc: true
1111

1212
Even though Codefresh has great support for containers, it can still be used for traditional JAR uploads of libraries or applications that are not dockerized yet. In this example we will compile a JAR and upload it to Nexus. The process is the same for Artifactory or any other package manager.
1313

14-
For a Java application with Docker, see the[Gradle]({{site.baseurl}}/docs/learn-by-example/java/gradle/){} or
15-
[Maven example]({{site.baseurl}}/docs/learn-by-example/java/spring-boot-2/).
14+
For a Java application with Docker, see the[Gradle]({{site.baseurl}}/docs/example-catalog/ci-examples/gradle/) or
15+
[Maven example]({{site.baseurl}}/docs/example-catalog/ci-examples/spring-boot-2/).
1616

1717
##The example Java library project
1818

@@ -104,7 +104,7 @@ You can use the same pipeline for Artifactory or any other compliant Java packag
104104

105105

106106
##Related articles
107-
[Gradle example]({{site.baseurl}}/docs/example-catalog/ci-examples/java/gradle/)
107+
[Gradle example]({{site.baseurl}}/docs/example-catalog/ci-examples/gradle/)
108108
[Spring boot example]({{site.baseurl}}/docs//example-catalog/ci-examples/spring-boot-2/)
109109
[Codefresh YAML for pipeline definitions]({{site.baseurl}}/docs/pipelines/what-is-the-codefresh-yaml/)
110110
[Steps in pipelines]({{site.baseurl}}/docs/pipelines/steps/)

‎_docs/example-catalog/ci-examples/ruby.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ The first step is a [build step]({{site.baseurl}}/docs/pipelines/steps/build/) n
103103

104104
##Inspecting your Docker image
105105

106-
You can see all your latest[Docker artifacts]({{site.baseurl}}/docs/docker-registries/working-with-docker-registries/#viewing-docker-images) by selecting*Images* from the left sidebar.
106+
You can see all your latest[Docker artifacts]({{site.baseurl}}/docs/ci-cd-guides/working-with-docker-registries/#viewing-docker-images) by selecting*Images* from the left sidebar.
107107

108108

109109
{% include image.html

‎_docs/installation/behind-the-firewall.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,5 +242,5 @@ The cluster where the runner works on should have network connectivity with the
242242
Once your cluster is connected you can use any of the familiar deployment methods such as the[dedicated deploy step]({{site.baseurl}}/docs/deployments/kubernetes/) or[custom kubectl commands]({{site.baseurl}}/docs/deployments/kubernetes/custom-kubectl-commands/).
243243

244244
##Related articles
245-
[Google marketplace integration]({{site.baseurl}}/docs/integrations/ci-integrations/google-marketplace/)
245+
[Google marketplace integration]({{site.baseurl}}/docs/integrations/google-marketplace/)
246246
[Managing your Kubernetes cluster]({{site.baseurl}}/docs/deployments/kubernetes/manage-kubernetes/)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp