项目作者: stevelacy

项目描述 :
Monorepo deployment manager for k8s
高级语言: Go
项目地址: git://github.com/stevelacy/monokube.git
创建时间: 2020-11-13T15:58:13Z
项目社区:https://github.com/stevelacy/monokube

开源协议:MIT License

下载


monokube

Monorepo deployment management

Works with lerna, yarn, and stand-alone monorepos

monokube.gif

  1. $ monokube --image-root stevelacy
  2. building 1 package(s)
  3. Step 1/8 : FROM golang:1.14.11-alpine3.11 as build_image
  4. ...
  5. ---> 18d162cff2a9
  6. Successfully tagged stevelacy/example-1:1.2.3-d80f667
  7. built image: stevelacy/example-1:1.2.3-d80f667
  8. The push refers to repository [docker.io/stevelacy/example-1]
  9. ...
  10. running deployments
  11. deployment.apps/example-1 configured
  12. service/example-1-staged unchanged
  13. Waiting for deployment "example-1" rollout to finish: 1 out of 3 new replicas have been updated...
  14. Waiting for deployment "example-1" rollout to finish: 2 out of 3 new replicas have been updated...
  15. Waiting for deployment "example-1" rollout to finish: 1 old replicas are pending termination...
  16. deployment "example-1" successfully rolled out
  17. running post-deployment tasks
  18. service/example-1 unchanged
  19. ingress.extensions/example-1 configured
  20. deployment "example-1" successfully rolled out
  21. all done

All together:

  1. monokube \
  2. --image-root stevelacy \
  3. --docker-args="--build-arg PACKAGE={{ .Name }}" \
  4. --cluster-name $CLUSTER_NAME \
  5. --only-packages example-1 \
  6. --diff "0132547" \
  7. --path ./packages \
  8. --skip-packages example-1 \
  9. --command post-deploy

Installing

Download the latest linux-amd64.tar.gz or view the releases list here

  1. tar -xf monokube-linux-amd64.tar.gz
  2. chmod +x monokube
  3. ./monokube

To install it globally to your usr/bin:

  1. sudo mv monokube /usr/local/bin

Arguments

Image Root

—image-root
String required

This sets the root of a docker image.

Example:

  1. --image-root stevelacy becomes stevelacy/package
  2. --image-root gcr.io/project becomes gcr.io/project/package

Command

—command
String optional pre-build | build | pre-deploy | deploy | post-deploy

If this flag is not provided, all tasks will be run in order: pre-build build pre-deploy deploy post-deploy

If the flag is provided only that task will be run

Note for all .sh scripts: The env is modified to include:

  • PACKAGE=”package-name”
  • IMAGE_ROOT=”—image-root || imageRoot”
pre-build

applies all kubernetes pre-build manifests and runs all pre-build.sh scripts
Both of these files are either applied or run, yaml is applied before sh:

  • pre-build.yaml
  • pre-build.sh
build

builds all docker images

pre-deploy

applies all kubernetes pre-deploy manifests and runs all pre-deploy.sh scripts
Both of these files are either applied or run, yaml is applied before sh:

  • pre-deploy.yaml
  • pre-deploy.sh
deploy

applies all kubernetes manifests

post-deploy

applies all kubernetes post-deploy manifests and runs all post-deploy.sh scripts
Both of these files are either applied or run, yaml is applied before sh:

  • post-deploy.yaml
  • post-deploy.sh

Path

—path
String optional
Default: packages

monokube looks for packages in the path provided or in the packages key of a lerna.json file.

Dry Run

—dry-run
Bool optional

This will build all docker images and run a deployment with --dry-run set. It does not push the images.

Output

—output (-o)
String optional yaml | json

Docker Args

—docker-args
String optional

This is passed into the docker build command directly.

Example:

  1. --docker-args="--build-arg PACKAGE={{ .Name }}"
  2. --docker-args="--compress --memory 512"

Cluster Name

—cluster-name
String optional

If provided only the packages with the —cluster-name in their kube/deploy.yaml will be deployed

  1. --cluster-name dev

./packages/example-1/kube/deploy.yaml

  1. {
  2. "clusters": [ "dev" ]
  3. }

Diff

—diff
String optional

Deploys a package only when there are changes between the current repo HEAD and the provided git commit

Skip Packages

—skip-packages
String optional

Skip building or deploying provided packages

  1. --skip-packages example-1 example-2

Only Packages

—only-packages
String optional

Only build or deploy provided packages

  1. --only-packages example-1 example-2

Templating

deployment.yaml manifest in the package/kube/ folder is templated with the provided arguments and the ENV

  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: {{ .Name }}
  5. namespace: {{ .Env.NAMESPACE }}
  6. labels:
  7. app: {{ .Name }}
  8. version: {{ .Version }}

Default values provided:

  1. Name: package folder name
  2. Image: built docker image
  3. Version: `version` field from `package/package.json`
  4. Env: key/value map of the current ENV