Go to file
Kevin Franklin Kim 2cc181ef3a
test: update tests
2023-09-21 10:25:28 +02:00
_examples refactor: move examples 2023-09-21 10:24:30 +02: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 fix: git commit 2023-08-14 23:09:28 +02:00
testdata test: update tests 2023-09-21 10:25:28 +02:00
tests/utils chore: update setup 2023-08-14 22:39:41 +02:00
util feat: remove dead code 2022-05-19 13:50:06 +02:00
.editorconfig chore: update setup 2023-08-14 22:39:41 +02:00
.gitignore chore: update setup 2023-08-14 22:39:41 +02: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
build.go feat: add cache-to and fix type 2022-01-04 11:22:49 +01:00
chart.go chore: update setup 2023-08-14 22:39:41 +02:00
CODE_OF_CONDUCT.md chore: update setup 2023-08-14 22:39:41 +02:00
configuration.go feat: add units helper 2022-05-19 13:49:56 +02:00
go.mod chore: update setup 2023-08-14 22:39:41 +02:00
go.sum chore: update setup 2023-08-14 22:39:41 +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 chore: update setup 2023-08-14 22:39:41 +02:00
squadron.go feat: extend description 2023-08-14 22:39:33 +02:00
template.go fix: add account flag when retrieving data 2023-09-01 17:20:27 +02:00
TODO.md docs: update example monorepo 2021-12-07 13:12:57 +01:00
unit.go feat: use docker buildx by default and add args 2021-12-10 11:47:01 +01:00
units.go feat: add units helper 2022-05-19 13:49:56 +02: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.