mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
| .. | ||
| cluster.go | ||
| command.go | ||
| config_test.go | ||
| config.go | ||
| config.schema.json | ||
| project.go | ||
| README.md | ||
| stackit.go | ||
POSH stackit provider
Usage
Plugin
package main
import (
"github.com/foomo/posh-providers/kubernets/kubectl"
"github.com/foomo/posh-providers/stackitcloud/stackit"
"github.com/foomo/posh/pkg/cache"
"github.com/foomo/posh/pkg/command"
)
type Plugin struct {
l log.Logger
cache cache.Cache
stackit *stackit.Stackit
kubectl *kubectl.Kubectl
commands command.Commands
}
func New(l log.Logger) (plugin.Plugin, error) {
var err error
inst := &Plugin{
l: l,
cache: &cache.MemoryCache{},
commands: command.Commands{},
}
// ...
inst.kubectl, err = kubectl.New(l, inst.cache)
if err != nil {
return nil, errors.Wrap(err, "failed to create kubectl")
}
inst.stackit, err = stackit.New(l, inst.cache)
if err != nil {
return nil, errors.Wrap(err, "failed to create stackit")
}
// ...
inst.commands.Add(stackit.NewCommand(l, inst.cache, inst.stackit, inst.kubectl))
// ...
return inst, nil
}
Config
## stackit
stackit:
projects:
my-project:
id: 123456-123456-123456
clusters:
dev:
name: my-project-dev-cluster
Ownbrew
To install binary locally, add:
ownbrew:
packages:
## https://github.com/stackitcloud/stackit-cli/releases
- name: stackit
tap: foomo/tap/stackitcloud/stackit-cli
version: 0.9.0