High level CDK construct to provision GitLab integrations with AWS
Project description
cdk-gitlab
High level CDK construct to provision GitLab integrations with AWS
Install
Use the npm dist tag to opt in CDKv1 or CDKv2:
// for CDKv2
npm install cdk-gitlab
or
npm install cdk-gitlab@latest
// for CDKv1
npm install cdk-gitlab@cdkv1
Sample
import { Provider, FargateJobExecutor, FargateRunner, JobExecutorImage } from 'cdk-gitlab';
const provider = new Provider(stack, 'GitlabProvider', { vpc });
// create a Amazon EKS cluster
provider.createFargateEksCluster(stack, 'GitlabEksCluster', {
clusterOptions: {
vpc,
version: eks.KubernetesVersion.V1_19,
},
});
// create a default fargate runner with its job executor
provider.createFargateRunner();
// alternatively, create the runner and the executor indivicually.
// first, create the executor
const executor = new FargateJobExecutor(stack, 'JobExecutor', {
image: JobExecutorImage.DEBIAN,
});
// second, create the runner with the task definition of the executor
new FargateRunner(stack, 'FargateRunner', {
vpc,
executor,
});
// TBD - create Amazon EC2 runner for the GitLab
provider.createEc2Runner(...);
});
Fargate Runner with Amazon ECS
On deployment with createFargateRunner()
, the Fargate Runner will be provisioned in Amazon ECS with AWS Fargate and Amazon ECS Capacity Providers. By default, the FARGATE
and FARGATE_SPOT
capacity providers are available for the Amazon ECS cluster and the runner and job executor will run on FARGATE_SPOT
. You can specify your custom clusterDefaultCapacityProviderStrategy
and serviceDefaultCapacityProviderStrategy
properties from the FargateRunner
construct for different capacity provider strategies.
Deploy
cdk deploy -c GITLAB_REGISTRATION_TOKEN=<TOKEN>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file cdk-gitlab-2.0.241.tar.gz
.
File metadata
- Download URL: cdk-gitlab-2.0.241.tar.gz
- Upload date:
- Size: 2.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5f500631cf067aeeab9a225faf0a7ad2efdaf88bbed3ed538f2f641381de344 |
|
MD5 | a9aee1eaff5901ddac224e2abbfb2b62 |
|
BLAKE2b-256 | ae11e0ee7c01b1296309004f1dda9442fe32c0453659b90ddb17a92bd2368dfd |
File details
Details for the file cdk_gitlab-2.0.241-py3-none-any.whl
.
File metadata
- Download URL: cdk_gitlab-2.0.241-py3-none-any.whl
- Upload date:
- Size: 2.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e6990781fa591bc0b2f6f1b51848cad3161f2b8a92dce536695c39d99e647ee |
|
MD5 | 2fc7a42f055807f90dabd001060a7859 |
|
BLAKE2b-256 | ff3629ed8659c5e504e2fb500459c362950306537e1e25452a702f88c2c38cc8 |