* concourse: Small fixes in README and templates * Update chart version (version got bumped since the earlier PR)
Concourse Helm Chart
Concourse is a simple and scalable CI system.
TL;DR;
$ helm install stable/concourse
Introduction
This chart bootstraps a Concourse deployment on a Kubernetes cluster using the Helm package manager.
Prerequisites Details
- Kubernetes 1.6 (for
pod affinitysupport) - PV support on underlying infrastructure (if persistence is required)
Installing the Chart
To install the chart with the release name my-release:
$ helm install --name my-release stable/concourse
Uninstalling the Chart
To uninstall/delete the my-release deployment:
$ helm delete my-release
The command removes nearly all the Kubernetes components associated with the chart and deletes the release.
Cleanup orphaned Persistent Volumes
This chart uses StatefulSets for Concourse Workers. Deleting a StatefulSet will not delete associated Persistent Volumes.
Do the following after deleting the chart release to clean up orphaned Persistent Volumes.
$ kubectl delete pvc -l app=${RELEASE-NAME}-worker
Scaling the Chart
Scaling should typically be managed via the helm upgrade command, but StatefulSets don't yet work with helm upgrade. In the meantime, until helm upgrade works, if you want to change the number of replicas, you can use the kubectl scale command as shown below:
$ kubectl scale statefulset my-release-worker --replicas=3
Restarting workers
If a worker isn't taking on work, you can restart the worker with kubectl delete pod. This will initiate a graceful shutdown by "retiring" the worker, to ensure Concourse doesn't try looking for old volumes on the new worker. The valueworker.terminationGracePeriodSeconds can be used to provide an upper limit on graceful shutdown time before forcefully terminating the container. Check the output of fly workers, and if a worker is stalled, you'll also need to run fly prune-worker to allow the new incarnation of the worker to start.
Worker Liveness Probe
The worker's Liveness Probe will trigger a restart of the worker if it detects unrecoverable errors, by looking at the worker's logs. The set of strings used to identify such errors could change in the future, but can be tuned with worker.fatalErrors. See values.yaml for the defaults.
Configuration
The following table lists the configurable parameters of the Concourse chart and their default values.
| Parameter | Description | Default |
|---|---|---|
image |
Concourse image | concourse/concourse |
imageTag |
Concourse image version | 3.9.0 |
imagePullPolicy |
Concourse image pull policy | IfNotPresent |
concourse.externalURL |
URL used to reach any ATC from the outside world | nil |
concourse.atcPort |
Concourse ATC listen port | 8080 |
concourse.tsaPort |
Concourse TSA listen port | 2222 |
concourse.allowSelfSignedCertificates |
Allow self signed certificates | false |
concourse.authDuration |
Length of time for which tokens are valid | 24h |
concourse.resourceCheckingInterval |
Interval on which to check for new versions of resources | 1m |
concourse.oldResourceGracePeriod |
How long to cache the result of a get step after a newer version of the resource is found | 5m |
concourse.resourceCacheCleanupInterval |
The interval on which to check for and release old caches of resource versions | 30s |
concourse.baggageclaimDriver |
The filesystem driver used by baggageclaim | naive |
concourse.containerPlacementStrategy |
The selection strategy for placing containers onto workers | random |
concourse.dockerRegistry |
An URL pointing to the Docker registry to use to fetch Docker images | nil |
concourse.insecureDockerRegistry |
Docker registry(ies) (comma separated) to allow connecting to even if not secure | nil |
concourse.encryption.enabled |
Enable encryption of pipeline configuration | false |
concourse.basicAuth.enabled |
Enable basic auth for the "main" Concourse team | true |
concourse.githubAuth.enabled |
Enable Github auth for the "main" Concourse team | false |
concourse.githubAuth.organization |
GitHub organizations (comma separated) whose members will have access | nil |
concourse.githubAuth.team |
GitHub teams (comma separated) whose members will have access | nil |
concourse.githubAuth.user |
GitHub users (comma separated) to permit access | nil |
concourse.githubAuth.authUrl |
Override default endpoint AuthURL for Github Enterprise | nil |
concourse.githubAuth.tokenUrl |
Override default endpoint TokenURL for Github Enterprise | nil |
concourse.githubAuth.apiUrl |
Override default API endpoint URL for Github Enterprise | nil |
concourse.gitlabAuth.enabled |
Enable Gitlab auth for the "main" Concourse team | false |
concourse.gitlabAuth.group |
GitLab groups (comma separated) whose members will have access | nil |
concourse.gitlabAuth.authUrl |
Endpoint AuthURL for GitLab server | nil |
concourse.gitlabAuth.tokenUrl |
Endpoint TokenURL for GitLab server | nil |
concourse.gitlabAuth.apiUrl |
API endpoint URL for GitLab server | nil |
concourse.genericOauth.enabled |
Enable generic OAuth for the "main" Concourse team | false |
concourse.genericOauth.displayName |
Name for this auth method on the web UI | nil |
concourse.genericOauth.authUrl |
Generic OAuth provider AuthURL endpoint | nil |
concourse.genericOauth.authUrlParam |
Parameters (comma separated) to pass to the authentication server AuthURL | nil |
concourse.genericOauth.scope |
Optional scope required to authorize user | nil |
concourse.genericOauth.tokenUrl |
Generic OAuth provider TokenURL endpoint | nil |
web.nameOverride |
Override the Concourse Web components name | nil |
web.replicas |
Number of Concourse Web replicas | 1 |
web.resources |
Concourse Web resource requests and limits | {requests: {cpu: "100m", memory: "128Mi"}} |
web.additionalAffinities |
Additional affinities to apply to web pods. E.g: node affinity | {} |
web.tolerations |
Tolerations for the web nodes | [] |
web.service.type |
Concourse Web service type | ClusterIP |
web.service.annotations |
Concourse Web Service annotations | nil |
web.service.atcNodePort |
Sets the nodePort for atc when using NodePort |
nil |
web.service.tsaNodePort |
Sets the nodePort for tsa when using NodePort |
nil |
web.ingress.enabled |
Enable Concourse Web Ingress | false |
web.ingress.annotations |
Concourse Web Ingress annotations | {} |
web.ingress.hosts |
Concourse Web Ingress Hostnames | [] |
web.ingress.tls |
Concourse Web Ingress TLS configuration | [] |
web.metrics.prometheus.enabled |
Enable Prometheus metrics exporter | false |
web.metrics.prometheus.port |
Port for exporting Prometeus metrics | 9391 |
worker.nameOverride |
Override the Concourse Worker components name | nil |
worker.replicas |
Number of Concourse Worker replicas | 2 |
worker.minAvailable |
Minimum number of workers available after an eviction | 1 |
worker.resources |
Concourse Worker resource requests and limits | {requests: {cpu: "100m", memory: "512Mi"}} |
worker.env |
Configure additional environment variables for the worker container(s) | [] |
worker.anotations |
Annotations to be added to the worker pods | {} |
worker.additionalAffinities |
Additional affinities to apply to worker pods. E.g: node affinity | {} |
worker.tolerations |
Tolerations for the worker nodes | [] |
worker.terminationGracePeriodSeconds |
Upper bound for graceful shutdown to allow the worker to drain its tasks | 60 |
worker.fatalErrors |
Newline delimited strings which, when logged, should trigger a restart of the worker | See values.yaml |
worker.updateStrategy |
OnDelete or RollingUpdate (requires Kubernetes >= 1.7) |
RollingUpdate |
worker.podManagementPolicy |
OrderedReady or Parallel (requires Kubernetes >= 1.7) |
Parallel |
persistence.enabled |
Enable Concourse persistence using Persistent Volume Claims | true |
persistence.worker.storageClass |
Concourse Worker Persistent Volume Storage Class | generic |
persistence.worker.accessMode |
Concourse Worker Persistent Volume Access Mode | ReadWriteOnce |
persistence.worker.size |
Concourse Worker Persistent Volume Storage Size | 20Gi |
postgresql.enabled |
Enable PostgreSQL as a chart dependency | true |
postgresql.postgresUser |
PostgreSQL User to create | concourse |
postgresql.postgresPassword |
PostgreSQL Password for the new user | concourse |
postgresql.postgresDatabase |
PostgreSQL Database to create | concourse |
postgresql.persistence.enabled |
Enable PostgreSQL persistence using Persistent Volume Claims | true |
credentialManager.kubernetes.enabled |
Enable Kubernetes Secrets Credential Manager | true |
credentialManager.kubernetes.namespacePrefix |
Prefix for namespaces to look for secrets in | .Release.Name- |
credentialManager.kubernetes.teams |
Teams to allow secret access when rbac is enabled | ["main"] |
credentialManager.ssm.enabled |
Use AWS SSM as a Credential Manager | false |
credentialManager.ssm.region |
AWS Region to use for SSM | nil |
credentialManager.ssm.pipelineSecretsTemplate |
Pipeline secrets template | nil |
credentialManager.ssm.teamSecretsTemplate |
Team secrets template | nil |
credentialManager.vault.enabled |
Use Hashicorp Vault as a Credential Manager | false |
credentialManager.vault.url |
Vault Server URL | nil |
credentialManager.vault.pathPrefix |
Vault path to namespace secrets | /concourse |
credentialManager.vault.useCaCert |
CA public certificate when using self-signed TLS with Vault | nil |
credentialManager.vault.authBackend |
Vault Authentication Backend to use, leave blank when using clientToken | nil |
rbac.create |
Enables creation of RBAC resources | true |
rbac.apiVersion |
RBAC version | v1beta1 |
rbac.webServiceAccountName |
Name of the service account to use for web pods if rbac.create is false |
default |
rbac.workerServiceAccountName |
Name of the service account to use for workers if rbac.create is false |
default |
secrets.create |
Create the secret resource from the following values. See Secrets | true |
secrets.hostKey |
Concourse Host Private Key | See values.yaml |
secrets.hostKeyPub |
Concourse Host Public Key | See values.yaml |
secrets.sessionSigningKey |
Concourse Session Signing Private Key | See values.yaml |
secrets.workerKey |
Concourse Worker Private Key | See values.yaml |
secrets.workerKeyPub |
Concourse Worker Public Key | See values.yaml |
secrets.encryptionKey |
current encryption key | nil |
secrets.oldEncryptionKey |
old encryption key, used for key rotation | nil |
secrets.awsSsmAccessKey |
AWS Access Key ID for SSM access | nil |
secrets.awsSsmSecretKey |
AWS Secret Access Key ID for SSM access | nil |
secrets.awsSsmSessionToken |
AWS Session Token for SSM access | nil |
secrets.basicAuthUsername |
Concourse Basic Authentication Username | concourse |
secrets.basicAuthPassword |
Concourse Basic Authentication Password | concourse |
secrets.githubAuthClientId |
Application client ID for GitHub OAuth | nil |
secrets.githubAuthClientSecret |
Application client secret for GitHub OAuth | nil |
secrets.gitlabAuthClientId |
Application client ID for GitLab OAuth | nil |
secrets.gitlabAuthClientSecret |
Application client secret for GitLab OAuth | nil |
secrets.genericOauthClientId |
Application client ID for Generic OAuth | nil |
secrets.genericOauthClientSecret |
Application client secret for Generic OAuth | nil |
secrets.postgresqlUri |
PostgreSQL connection URI when postgres.enabled is false |
nil |
secrets.vaultCaCert |
CA certificate use to verify the vault server SSL cert. | nil |
secrets.vaultClientToken |
Vault periodic client token | nil |
secrets.vaultAppRoleId |
Vault AppRole RoleID | nil |
secrets.vaultAppRoleSecretId |
Vault AppRole SecretID | nil |
secrets.vaultClientCert |
Vault Client Certificate | nil |
secrets.vaultClientKey |
Vault Client Key | nil |
Specify each parameter using the --set key=value[,key=value] argument to helm install.
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
$ helm install --name my-release -f values.yaml stable/concourse
Tip
: You can use the default values.yaml
Secrets
For your convenience, this chart provides some default values for secrets, but it is recommended that you generate and manage these secrets outside the Helm chart. To do this, set secrets.create to false, create files for each secret value, and turn it all into a k8s secret. Be careful with introducing trailing newline characters; following the steps below ensures none will end up in your secrets. First, perform the following to create the manditory secret values:
mkdir concourse-secrets
cd concourse-secrets
ssh-keygen -t rsa -f host-key -N ''
mv host-key.pub host-key-pub
ssh-keygen -t rsa -f worker-key -N ''
mv worker-key.pub worker-key-pub
ssh-keygen -t rsa -f session-signing-key -N ''
rm session-signing-key.pub
printf "%s" "concourse" > basic-auth-username
printf "%s" "$(openssl rand -base64 24)" > basic-auth-password
You'll also need to create/copy secret values for optional features. See templates/secrets.yaml for possible values. In the example below, we are not using the PostgreSQL chart dependency, and so we must set a postgresql-uri secret.
# copy a posgres URI to clipboard and paste it to file
printf "%s" "$(pbpaste)" > postgresql-uri
# copy Github client id and secrets to clipboard and paste to files
printf "%s" "$(pbpaste)" > github-auth-client-id
printf "%s" "$(pbpaste)" > github-auth-client-secret
# set an encryption key for DB encryption at rest
printf "%s" "$(openssl rand -base64 24)" > encryption-key
Then create a secret called [release-name]-concourse from all the secret value files in the current folder:
kubectl create secret generic my-release-concourse --from-file=.
Make sure you clean up after yourself.
Persistence
This chart mounts a Persistent Volume for each Concourse Worker. The volume is created using dynamic volume provisioning. If you want to disable it or change the persistence properties, update the persistence section of your custom values.yaml file:
## Persistent Volume Storage configuration.
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
##
persistence:
## Enable persistence using Persistent Volume Claims.
##
enabled: true
## Worker Persistence configuration.
##
worker:
## Persistent Volume Storage Class.
##
class: generic
## Persistent Volume Access Mode.
##
accessMode: ReadWriteOnce
## Persistent Volume Storage Size.
##
size: "20Gi"
It is highly recommended to use Persistent Volumes for Concourse Workers; otherwise the container images managed by the Worker are stored in an emptyDir volume on the node's disk. This will interfere with k8s ImageGC and the node's disk will fill up as a result. This will be fixed in a future release of k8s: https://github.com/kubernetes/kubernetes/pull/57020
Ingress TLS
If your cluster allows automatic creation/retrieval of TLS certificates (e.g. kube-lego), please refer to the documentation for that mechanism.
To manually configure TLS, first create/retrieve a key & certificate pair for the address(es) you wish to protect. Then create a TLS secret in the namespace:
kubectl create secret tls concourse-web-tls --cert=path/to/tls.cert --key=path/to/tls.key
Include the secret's name, along with the desired hostnames, in the web.ingress.tls section of your custom values.yaml file:
## Configuration values for Concourse Web components.
##
web:
## Ingress configuration.
## ref: https://kubernetes.io/docs/user-guide/ingress/
##
ingress:
## Enable ingress.
##
enabled: true
## Hostnames.
## Must be provided if Ingress is enabled.
##
hosts:
- concourse.domain.com
## TLS configuration.
## Secrets must be manually created in the namespace.
##
tls:
- secretName: concourse-web-tls
hosts:
- concourse.domain.com
PostgreSQL
By default, this chart will use a PostgreSQL database deployed as a chart dependency, with default values for username, password, and database name. These can be modified by setting the postgresql.* values.
You can also bring your own PostgreSQL. To do so, set postgresql.enabled to false. You'll then need to specify the full uri to the database, including the username and password, e.g. postgres://concourse:changeme@my-postgres.com:5432/concourse?sslmode=require. You can do this one of two ways:
-
Set
secrets.postgresqlUriin your values -
Set
postgresql-uriin your release's secrets as described in Secrets.
The only way to completely avoid putting secrets in Helm is to bring your own PostgreSQL, and use option 2 above.
Credential Management
Pipelines usually need credentials to do things. Concourse supports the use of a Credential Manager so your pipelines can contain references to secrets instead of the actual secret values. You can't use more than one credential manager at a time.
Kubernetes Secrets
By default, this chart will use Kubernetes Secrets as a credential manager. For a given Concourse team, a pipeline will look for secrets in a namespace named [namespacePrefix][teamName]. The namespace prefix is the release name hyphen by default, and can be overridden with the value credentialManager.kubernetes.namespacePrefix. The service account used by Concourse must have get access to secrets in that namespace. When rbac.create is true, this access is granted for each team listed under credentialManager.kubernetes.teams.
Here are some examples of the lookup heuristics, given release name concourse:
In team accounting-dev, pipeline my-app; the expression ((api-key)) resolves to:
- the secret value in namespace:
concourse-accounting-devsecret:my-app.api-key, key:value - and if not found, is the value in namespace:
concourse-accounting-devsecret:api-key, key:value
In team accounting-dev, pipeline my-app, the expression ((common-secrets.api-key)) resolves to:
- the secret value in namespace:
concourse-accounting-devsecret:my-app.common-secrets, key:api-key - and if not found, is the value in namespace:
concourse-accounting-devsecret:common-secrets, key:api-key
Be mindful of your team and pipeline names, to ensure they can be used in namespace and secret names, e.g. no underscores.
To test, create a secret in namespace concourse-main:
kubectl create secret generic hello --from-literal 'value=Hello world!'
Then fly set-pipeline with the following pipeline, and trigger it:
jobs:
- name: hello-world
plan:
- task: say-hello
config:
platform: linux
image_resource:
type: docker-image
source: {repository: alpine}
params:
HELLO: ((hello))
run:
path: /bin/sh
args: ["-c", "echo $HELLO"]
Hashicorp Vault
To use Vault, set credentialManager.kubernetes.enabled to false, and set the following values:
## Configuration values for the Credential Manager.
## ref: https://concourse-ci.org/creds.html
##
credentialManager:
vault:
## Use Hashicorp Vault for the Credential Manager.
##
enabled: false
## URL pointing to vault addr (i.e. http://vault:8200).
##
# url:
## vault path under which to namespace credential lookup, defaults to /concourse.
##
# pathPrefix:
AWS Systems Manager Parameter Store (SSM)
To use SSM, set credentialManager.kubernetes.enabled to false, and set credentialManager.ssm.enabled to true.
For a given Concourse team, a pipeline will look for secrets in SSM using either /concourse/{team}/{secret} or /concourse/{team}/{pipeline}/{secret}; the patterns can be overridden using the credentialManager.ssm.teamSecretTemplate and credentialManager.ssm.pipelineSecretTemplate settings.
Concourse requires AWS credentials which are able to read from SSM for this feature to function. Credentials can be set in the secrets.awsSsm* settings; if your cluster is running in a different AWS region, you may also need to set credentialManager.ssm.region.
The minimum IAM policy you need to use SSM with Concourse is:
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "kms:Decrypt",
"Resource": "<kms-key-arn>",
"Effect": "Allow"
},
{
"Action": "ssm:GetParameter*",
"Resource": "<...arn...>:parameter/concourse/*",
"Effect": "Allow"
}
]
}
Where <kms-key-arn> is the ARN of the KMS key used to encrypt the secrets in Paraemter Store, and the <...arn...> should be replaced with a correct ARN for your account and region's Parameter Store.