Go to file
Kevin Franklin Kim e6738a53a8
style: format code
2024-01-03 17:03:36 +01:00
_examples style: format code 2024-01-03 17:03:36 +01:00
.github chore: switch to main 2023-08-14 22:46:28 +02:00
.husky chore: update setup 2023-08-14 22:39:41 +02:00
cmd feat: fix race conditions 2023-09-27 10:02:55 +02:00
internal feat: remove deprecations 2023-12-20 16:27:19 +01:00
testdata feat: fix race conditions 2023-09-27 10:02:55 +02:00
.editorconfig chore: update setup 2023-08-14 22:39:41 +02:00
.gitignore feat: add yamllint 2023-12-20 16:26:59 +01:00
.golangci.yml chore: update setup 2023-08-14 22:39:41 +02:00
.goreleaser.yml chore: change changelog 2023-09-21 10:24:53 +02:00
.husky.yaml chore: update setup 2023-08-14 22:39:41 +02:00
.yamllint.yaml style: format code 2024-01-03 17:03:36 +01:00
CODE_OF_CONDUCT.md chore: update setup 2023-08-14 22:39:41 +02:00
go.mod feat: bump deps 2023-12-20 16:27:11 +01:00
go.sum feat: bump deps 2023-12-20 16:27:11 +01:00
init.go feat: add squadron name to schema 2023-09-21 10:25:54 +02:00
LICENSE docs: add license 2021-07-26 15:57:20 +02:00
Makefile chore: update test output 2023-09-21 10:25:10 +02:00
README.md docs: update docs 2021-12-10 11:52:39 +01:00
squadron_test.go feat: fix race conditions 2023-09-27 10:02:55 +02:00
squadron.go feat: fix race conditions 2023-09-27 10:02:55 +02:00
TODO.md docs: update todos 2023-12-20 16:27:27 +01:00

Squadron

Go Report Card godoc goreleaser

Application for managing kubernetes microservice environments.

Use it, if a helm chart is not enough in order to organize multiple services into an effective squadron.

Another way to think of it would be helm-compose, because it makes k8s and helm way more approachable, not matter if it is development or production (where it just becomes another helm chart)

Quickstart

Configure your squadron

# squadron.yaml
version: "1.0"

squadron:
  frontend:
    chart:
      name: mychart
      version: 0.1.0
      repository: http://helm.mycompany.com/repository
    builds:
      service:
        tag: latest
        dockerfile: Dockerfile
        image: docker.mycompany.com/mycomapny/frontend
        args:
          - "foo=foo"
          - "bar=bar"
    values:
      image: docker.mycompany.com/mycomapny/frontend:latest

Install the squadron squadron and namespace:

$ squadron up --build --push --namespace default

Uninstall the squadron again:

$ squadron down

Commands

# See:
$ squadron help

See also

Sometimes as a sailor or a pirate you might need to get a grapple : go get github.com/foomo/gograpple/...

How to Contribute

Make a pull request...

License

Distributed under MIT License, please see license file within the code for more details.