Go to file
2024-01-04 09:17:33 +01:00
_examples style: format code 2024-01-03 17:03:36 +01:00
.github chore: bump deps 2024-01-04 09:15:18 +01:00
.husky chore: update setup 2023-08-14 22:39:41 +02:00
cmd feat: only show output if not empty 2024-01-03 17:04:12 +01:00
internal Merge branch 'main' of github.com:foomo/squadron into schema-2.0 2024-01-03 17:56:08 +01:00
testdata test: update snapshots 2024-01-03 17:52:24 +01: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: disable linter 2023-12-20 16:55:16 +01:00
.goreleaser.yml chore: set prerelease to auto 2024-01-04 09:17:33 +01: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 chore: bump deps 2024-01-04 09:15:26 +01:00
go.sum chore: bump deps 2024-01-04 09:15:26 +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 fix: values 2024-01-04 09:15:36 +01: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.