https://github.com/slamdev/micro-ci
Micro CI
https://github.com/slamdev/micro-ci
continuous-integration golang kubernetes makefile monorepo
Last synced: 3 months ago
JSON representation
Micro CI
- Host: GitHub
- URL: https://github.com/slamdev/micro-ci
- Owner: slamdev
- Created: 2018-08-21T05:38:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T11:56:18.000Z (over 1 year ago)
- Last Synced: 2025-01-29T14:45:18.655Z (5 months ago)
- Topics: continuous-integration, golang, kubernetes, makefile, monorepo
- Language: Go
- Size: 70.3 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Micro CI [](https://travis-ci.org/slamdev/micro-ci)
AIM of the project is to create kubernetis native continuous integration system. This CI allows to run build jobs as
independent pods inside of kubernetes namespace and manage requirements (cpu\memory resources, volumes, etc) per job.Sample CI manifest:
```yaml
jobs:
- name: build
spec:
containers:
- name: build
image: golang:alpine
command:
- build
env:
- name: SOME_VAR
value: some-value
resources:
limits:
cpu: 3
memory: 4Gi
requests:
cpu: 1
memory: 2Gi
volumeMounts:
- mountPath: /data
name: data-volume
```Each spec entry should contain valid k8s pod description as specified in [Pod v1 core](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.11/#pod-v1-core)
## Arhcitecture
