Skip to content
This repository was archived by the owner on Mar 24, 2022. It is now read-only.

Commit 2c2bf73

Browse files
author
James Ma
committed
changed references from concourse.ci to concourse-ci.org
1 parent d3e6a48 commit 2c2bf73

File tree

17 files changed

+35
-35
lines changed

17 files changed

+35
-35
lines changed

artifactory-integration/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ This pipeline definition file can also be downloaded from [this repository](http
8383

8484
##### Pre-requisites
8585

86-
1. An instance of [Concourse installed](http://concourse.ci/installing.html) up-and-running.
87-
1. The [Concourse Fly command line interface](http://concourse.ci/fly-cli.html) installed on your local machine.
86+
1. An instance of [Concourse installed](http://concourse-ci.org/installing.html) up-and-running.
87+
1. The [Concourse Fly command line interface](http://concourse-ci.org/fly-cli.html) installed on your local machine.
8888
1. A JFrog Artifactory server up-and-running.
8989
For local tests, you can [run Artifactory as a Docker image](https://www.jfrog.com/confluence/display/RTF/Running+with+Docker).
9090

azure-blobstore-integration/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ jobs:
9292
9393
##### Pre-requisites
9494
95-
1. An instance of [Concourse installed](http://concourse.ci/installing.html) up-and-running.
96-
1. The [Concourse Fly command line interface](http://concourse.ci/fly-cli.html) installed on your local machine.
95+
1. An instance of [Concourse installed](http://concourse-ci.org/installing.html) up-and-running.
96+
1. The [Concourse Fly command line interface](http://concourse-ci.org/fly-cli.html) installed on your local machine.
9797
1. An Azure Blobstore container setup.
9898
In your Azure account, [create a blobstore storage account](https://docs.microsoft.com/en-us/azure/storage/storage-create-storage-account#create-a-storage-account). For example, for "Account kind", choose "Blob storage".
9999
Then, create a container for the storage account. Choose the appropriate "Access type" that matches your needs (e.g. for "Private" and "Blob" you will have to provide your storage access key to the pipeline. I chose "Blob" for my tests). The name given to this container will be used in the pipeline definition file.

blue-green-app-deployment/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ For you to inspect which instance is being used by the main route, simply point
4141
The requirements for this pipeline's setup are as follows:
4242

4343
1. An instance of Concourse installed either as a local vagrant machine or as a remote server.
44-
Please refer to the documentation on [how to install Concourse](http://concourse.ci/installing.html) or to article [Deploying Concourse on Bosh-lite](https://github.com/pivotalservices/concourse-pipeline-samples/tree/master/concourse-on-bosh-lite).
44+
Please refer to the documentation on [how to install Concourse](http://concourse-ci.org/installing.html) or to article [Deploying Concourse on Bosh-lite](https://github.com/pivotalservices/concourse-pipeline-samples/tree/master/concourse-on-bosh-lite).
4545

4646
1. The Concourse Fly command line interface is installed on the local VM.
4747
The Fly cli can be downloaded directly from the link provided on the Concourse web interface.
48-
Please refer to the [Fly cli documentation](http://concourse.ci/fly-cli.html) for details.
48+
Please refer to the [Fly cli documentation](http://concourse-ci.org/fly-cli.html) for details.
4949

5050

5151
## Pipeline setup and execution

concourse-on-bosh-1.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# Concourse deployment with a Bosh 1.x manifest
55

6-
Concourse's [installation documentation](http://concourse.ci/clusters-with-bosh.html) provides only samples on how to install Concourse using a Bosh 2.0-style deployment manifests, i.e. manifests that rely on the Bosh 2.0 Cloud Config concept. In some instances though, customers may want to install Concourse on a new or existing Bosh Director where a Bosh 1.0 compliant deployment is in effect or desired for some reason.
6+
Concourse's [installation documentation](http://concourse-ci.org/clusters-with-bosh.html) provides only samples on how to install Concourse using a Bosh 2.0-style deployment manifests, i.e. manifests that rely on the Bosh 2.0 Cloud Config concept. In some instances though, customers may want to install Concourse on a new or existing Bosh Director where a Bosh 1.0 compliant deployment is in effect or desired for some reason.
77

88
Having that said, this article provides sample steps on how to deploy Concourse 1.x on a Bosh Director not yet setup to use Cloud Config features. It also assumes that you have an instance of [Bosh Director](http://bosh.io/docs/init.html) already configured.
99

@@ -46,7 +46,7 @@ Having that said, this article provides sample steps on how to deploy Concourse
4646

4747
``external_url: http://XX.XX.XX.XX:8080```
4848

49-
1. Deploy and run your pipelines as described in the [Concourse Documentation page](http://concourse.ci/fly-cli.html).
49+
1. Deploy and run your pipelines as described in the [Concourse Documentation page](http://concourse-ci.org/fly-cli.html).
5050

5151

5252
---

concourse-on-bosh-lite/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Deploying Concourse on Bosh-lite
44

5-
The quickest way to install and run a local copy of Concourse is by using the provided Vagrant image as mentioned in [Concourse’s documentation page](http://concourse.ci/vagrant.html). However, in certain cases, one may have the need to experiment with the Bosh-deployed version of Concourse in a local machine prior to moving it onto a shared/production environment later. For those cases, a solution is to install Concourse on top of a local Bosh-lite deployment. The section further below describes the steps to get that done.
5+
The quickest way to install and run a local copy of Concourse is by using the provided Vagrant image as mentioned in [Concourse’s documentation page](http://concourse-ci.org/vagrant.html). However, in certain cases, one may have the need to experiment with the Bosh-deployed version of Concourse in a local machine prior to moving it onto a shared/production environment later. For those cases, a solution is to install Concourse on top of a local Bosh-lite deployment. The section further below describes the steps to get that done.
66

77
For more information about Bosh-lite and Concourse, please refer to the **Reference** section further below.
88

@@ -67,12 +67,12 @@ For more information about Bosh-lite and Concourse, please refer to the **Refere
6767

6868
[http://10.244.8.2:8080/](http://10.244.8.2:8080/)
6969

70-
11. Deploy and run your pipelines as described in the [Concourse Documentation page](http://concourse.ci/fly-cli.html).
70+
11. Deploy and run your pipelines as described in the [Concourse Documentation page](http://concourse-ci.org/fly-cli.html).
7171

7272

7373
## References
7474
- Bosh-lite https://github.com/cloudfoundry/bosh-lite
75-
- Concourse http://concourse.ci/introduction.html
75+
- Concourse http://concourse-ci.org/introduction.html
7676

7777
## Credits
7878
Article based on deployment steps originally provided by Caleb Washburn

concourse-pipeline-hacks/check-resource/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
After Concourse retrieves the latest version of a newly configured resource, it will not retrieve previous versions of that resource automatically anymore, even if those old versions are explicitly referred by the pipeline parameters.
88

9-
In order to force Concourse to retrieve an older version of a resource, use the fly CLI command with [`check-resource`](https://concourse.ci/fly-check-resource.html).
9+
In order to force Concourse to retrieve an older version of a resource, use the fly CLI command with [`check-resource`](https://concourse-ci.org/fly-check-resource.html).
1010

1111
For example, in the sample pipeline further below, when you try to run job `unit-test` for the first time, it will get stuck waiting for Concourse to retrieve version `2.5.0` (an older version) of the `fly-release` resource while it shows the following message:
1212
```

concourse-pipeline-hacks/docker-images-from-repo/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Here is an example of a `rootfs` git repository with the required container file
2626
![Rootfs-curl-repo](https://raw.githubusercontent.com/lsilvapvt/misc-support-files/master/docs/images/rootfs-curl-repo.jpg)
2727

2828

29-
To use that `rootfs` repository in a pipeline, use the [`image`](https://concourse.ci/task-step.html#task-image) parameter instead of `image_resource` when defining a task.
30-
For defining [resource types](https://concourse.ci/configuring-resource-types.html) using `rootfs` repositories, use `type: git` instead of `type: docker-image` in the `resource_types` entries of the pipeline.
29+
To use that `rootfs` repository in a pipeline, use the [`image`](https://concourse-ci.org/task-step.html#task-image) parameter instead of `image_resource` when defining a task.
30+
For defining [resource types](https://concourse-ci.org/configuring-resource-types.html) using `rootfs` repositories, use `type: git` instead of `type: docker-image` in the `resource_types` entries of the pipeline.
3131

3232
### Sample pipeline
3333

@@ -105,6 +105,6 @@ The techniques described here should only be used for temporary Concourse demons
105105

106106
- [Running tasks with Docker images from an S3 bucket]( https://github.com/pivotalservices/concourse-pipeline-samples/tree/master/concourse-pipeline-hacks/docker-images-from-s3)
107107

108-
- [Concourse documentation on running tasks with a rootfs image]( https://concourse.ci/running-tasks.html#task-config-image)
108+
- [Concourse documentation on running tasks with a rootfs image]( https://concourse-ci.org/running-tasks.html#task-config-image)
109109

110110
#### [Back to Concourse Pipeline Hacks](..)

concourse-pipeline-hacks/docker-images-from-s3/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Another example of such download-and-package pipeline is also available from [th
9494

9595
### See also
9696

97-
- [Concourse documentation on running tasks with a rootfs image]( https://concourse.ci/running-tasks.html#task-config-image)
97+
- [Concourse documentation on running tasks with a rootfs image]( https://concourse-ci.org/running-tasks.html#task-config-image)
9898

9999
- [Running pipeline tasks and resources without a Docker registry](https://github.com/pivotalservices/concourse-pipeline-samples/tree/master/concourse-pipeline-hacks/docker-images-from-repo)
100100

concourse-pipeline-hacks/task-run-user/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Of course, this will not work for you if one of your task's image/container requ
88

99
### The solution
1010

11-
To accommodate that requirement, Concourse provides a [`user` parameter](http://concourse.ci/running-tasks.html#task-run-user) for you to explicitly set the user to run a task container with.
11+
To accommodate that requirement, Concourse provides a [`user` parameter](http://concourse-ci.org/running-tasks.html#task-run-user) for you to explicitly set the user to run a task container with.
1212

1313

1414
#### Sample pipeline

concourse-pipeline-patterns/gated-pipelines/01-simple/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A simple gated CI pipeline
22

33
In Concourse, a job requires to be manually triggered by default, as long as none of
4-
its resources specify the "[trigger: true](http://concourse.ci/get-step.html#trigger)" parameter.
4+
its resources specify the "[trigger: true](http://concourse-ci.org/get-step.html#trigger)" parameter.
55

66
Therefore, in order to create a "gated" step in a pipeline, a simple job that requires a manual trigger needs to be inserted into it.
77

concourse-pipeline-patterns/parameterized-pipeline-tasks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ That allows for the reuse of common task definitions, for example, `package rele
99

1010
### Key-value pairs with `params`
1111

12-
Key-value pairs can be passed to a task through a [`params`](http://concourse.ci/running-tasks.html#params) section in the task definition. Each `key` entry will become an **environment variable** during the execution of the task.
12+
Key-value pairs can be passed to a task through a [`params`](http://concourse-ci.org/running-tasks.html#params) section in the task definition. Each `key` entry will become an **environment variable** during the execution of the task.
1313

1414

1515
### Input and Output Mappings
1616

17-
The `inputs` and `outputs` of a task can be parameterized with [input-mappings](http://concourse.ci/task-step.html#input_mapping) and [output-mappings](http://concourse.ci/task-step.html#output_mapping) respectively.
17+
The `inputs` and `outputs` of a task can be parameterized with [input-mappings](http://concourse-ci.org/task-step.html#input_mapping) and [output-mappings](http://concourse-ci.org/task-step.html#output_mapping) respectively.
1818
That means that an entire input or output folder that is expected by the task (e.g. a github release or S3) can be "substituted" with another folder from a pipeline resource for each run of the task.
1919

2020

concourse-pipeline-patterns/uaa-authentication/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Authenticating Concourse team members with PCF UAA
99

10-
Concourse can be [integrated with a Cloud Foundry UAA server](http://concourse.ci/teams.html#uaa-cf-auth) to authenticate and authorize members of a specific team based on CF Organization/Space membership.
10+
Concourse can be [integrated with a Cloud Foundry UAA server](http://concourse-ci.org/teams.html#uaa-cf-auth) to authenticate and authorize members of a specific team based on CF Organization/Space membership.
1111

1212
The authorization of the users for a Concourse team is validated against the user membership of a specific `space` in Cloud Foundry.
1313

@@ -55,7 +55,7 @@ uaac client add concourse \
5555

5656
#### 2. Configure a Concourse team that delegates authentication to UAA
5757

58-
From a machine that can connect to Concourse via [FLY cli](http://concourse.ci/fly-cli.html), set the Concourse team with UAA authentication:
58+
From a machine that can connect to Concourse via [FLY cli](http://concourse-ci.org/fly-cli.html), set the Concourse team with UAA authentication:
5959

6060
```
6161
fly -t <your-target> set-team -n <team-name> \

concourse-pipeline-patterns/vault-integration/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# How to integrate Concourse pipelines with Vault
44

5-
Concourse 3.3.1+ supports [credential management integration with HashiCorp's Vault](http://concourse.ci/creds.html) and eliminates the need to feed credentials to pipelines via plain-text parameter files.
5+
Concourse 3.3.1+ supports [credential management integration with HashiCorp's Vault](http://concourse-ci.org/creds.html) and eliminates the need to feed credentials to pipelines via plain-text parameter files.
66

77
This integration requires configuration updates to both Vault and Concourse servers as described further below.
88

@@ -19,7 +19,7 @@ jobs:
1919
SYS_USERNAME: ((vault-system-username))
2020
```
2121

22-
When Concourse runs that pipeline/job, it will search for the corresponding secret in Vault, using a [pre-determined search order](http://concourse.ci/creds.html#vault), and execute the task appropriately with the retrieved values.
22+
When Concourse runs that pipeline/job, it will search for the corresponding secret in Vault, using a [pre-determined search order](http://concourse-ci.org/creds.html#vault), and execute the task appropriately with the retrieved values.
2323

2424

2525
## Configuring the Vault server
@@ -63,7 +63,7 @@ On an [unsealed](https://www.vaultproject.io/docs/concepts/seal.html) Vault serv
6363

6464
Copy the token value from the step further above and set it in the Concourse server.
6565

66-
* For binary-based Concourse deployments, see [the Concourse documentation](http://concourse.ci/creds.html) for setup instructions.
66+
* For binary-based Concourse deployments, see [the Concourse documentation](http://concourse-ci.org/creds.html) for setup instructions.
6767

6868
* For Bosh-based Concourse deployments, update the `atc` job properties in the deployment manifest as described below and then redeploy Concourse:
6969

@@ -88,7 +88,7 @@ For a complete list of Vault integration parameters for the `atc` job, please co
8888

8989
Then, once you run the pipelines, you should see secret keys being replaced with the corresponding values retrieved from the Vault server by Concourse.
9090

91-
For more information on Concourse and Vault integration, please refer to Concourse's [Credentials Management documentation page](http://concourse.ci/creds.html).
91+
For more information on Concourse and Vault integration, please refer to Concourse's [Credentials Management documentation page](http://concourse-ci.org/creds.html).
9292

9393

9494
### Hint: how to keep pipeline YML files untouched and still integrate with Vault

email-with-attachments/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ If you want to see the full sample pipeline provided in action, here is how you
4949

5050
##### Pre-requisites to setup this example on your Concourse server
5151

52-
1. An instance of [Concourse installed](http://concourse.ci/installing.html) up-and-running.
53-
1. The [Concourse Fly command line interface](http://concourse.ci/fly-cli.html) installed on your local machine.
52+
1. An instance of [Concourse installed](http://concourse-ci.org/installing.html) up-and-running.
53+
1. The [Concourse Fly command line interface](http://concourse-ci.org/fly-cli.html) installed on your local machine.
5454

5555
##### Configuration steps
5656
1. Clone the sample git repository on your local machine

google-cloud-storage-integration/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ jobs:
105105
106106
##### Pre-requisites
107107
108-
1. An instance of [Concourse installed](http://concourse.ci/installing.html) up-and-running.
109-
1. The [Concourse Fly command line interface](http://concourse.ci/fly-cli.html) installed on your local machine.
108+
1. An instance of [Concourse installed](http://concourse-ci.org/installing.html) up-and-running.
109+
1. The [Concourse Fly command line interface](http://concourse-ci.org/fly-cli.html) installed on your local machine.
110110
1. A Google Cloud Storage bucket setup
111111
To create one:
112112
- go to your [GCP account dashboard](https://console.cloud.google.com/home/dashboard);

pcf-cfops-backup/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ In the "CleanUp" tab of the pipeline, a single job is defined to perform a night
6767
The requirements for this pipeline's setup are as follows:
6868

6969
1. An instance of Concourse installed either as a local vagrant machine or as a remote server.
70-
Please refer to the documentation on [how to install Concourse](http://concourse.ci/installing.html) or to article [Deploying Concourse on Bosh-lite](https://github.com/pivotalservices/concourse-pipeline-samples/tree/master/concourse-on-bosh-lite).
70+
Please refer to the documentation on [how to install Concourse](http://concourse-ci.org/installing.html) or to article [Deploying Concourse on Bosh-lite](https://github.com/pivotalservices/concourse-pipeline-samples/tree/master/concourse-on-bosh-lite).
7171
Note that the size of backup files produced by CFOps for some PCF components may be of 10+ Gigabytes each, so plan to have large disk sizes in place for the Concourse Worker VMs in order to avoid build failures due to not enough available disk space.
7272

7373
1. The Concourse Fly command line interface is installed on the local VM.
7474
The Fly cli can be downloaded directly from the link provided on the Concourse web interface.
75-
Please refer to the [Fly cli documentation](http://concourse.ci/fly-cli.html) for details.
75+
Please refer to the [Fly cli documentation](http://concourse-ci.org/fly-cli.html) for details.
7676

7777
1. A deployed instance of PCF that is managed by an Ops Manager
7878

0 commit comments

Comments
 (0)