Compare commits
13 Commits
f9b668642e
...
d12ebfc642
Author | SHA1 | Date | |
---|---|---|---|
d12ebfc642 | |||
441d3a623e | |||
e1d9acb980 | |||
f8be2c08d6 | |||
bc7422a50c | |||
9d32551ec5 | |||
ded6d179c1 | |||
6f4ee0ebd1 | |||
1375c9b317 | |||
53a0d26a47 | |||
87354ef0d4 | |||
8560041598 | |||
0611cc9f70 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@
|
|||||||
/.bouncer-token
|
/.bouncer-token
|
||||||
/data
|
/data
|
||||||
/out
|
/out
|
||||||
|
.dockerconfigjson
|
||||||
|
@ -33,15 +33,15 @@ archives:
|
|||||||
- README.md
|
- README.md
|
||||||
- misc/packaging/common/config.yml
|
- misc/packaging/common/config.yml
|
||||||
checksum:
|
checksum:
|
||||||
name_template: 'checksums.txt'
|
name_template: "checksums.txt"
|
||||||
snapshot:
|
snapshot:
|
||||||
name_template: "{{ .Version }}"
|
name_template: "{{ .Version }}"
|
||||||
changelog:
|
changelog:
|
||||||
sort: asc
|
sort: asc
|
||||||
filters:
|
filters:
|
||||||
exclude:
|
exclude:
|
||||||
- '^docs:'
|
- "^docs:"
|
||||||
- '^test:'
|
- "^test:"
|
||||||
nfpms:
|
nfpms:
|
||||||
- id: bouncer-bin
|
- id: bouncer-bin
|
||||||
builds:
|
builds:
|
||||||
@ -63,6 +63,10 @@ nfpms:
|
|||||||
- src: layers
|
- src: layers
|
||||||
dst: /etc/bouncer/layers
|
dst: /etc/bouncer/layers
|
||||||
type: config
|
type: config
|
||||||
|
- dst: /etc/bouncer/bootstrap.d
|
||||||
|
type: dir
|
||||||
|
file_info:
|
||||||
|
mode: 0700
|
||||||
- id: bouncer-admin
|
- id: bouncer-admin
|
||||||
meta: true
|
meta: true
|
||||||
package_name: bouncer-admin
|
package_name: bouncer-admin
|
||||||
|
@ -9,10 +9,15 @@ RUN mkdir -p /usr/local/bin \
|
|||||||
&& wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_amd64 \
|
&& wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_amd64 \
|
||||||
&& chmod +x /usr/local/bin/yq
|
&& chmod +x /usr/local/bin/yq
|
||||||
|
|
||||||
COPY . /src
|
|
||||||
|
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
|
|
||||||
|
COPY go.mod .
|
||||||
|
COPY go.sum .
|
||||||
|
|
||||||
|
RUN go mod download
|
||||||
|
|
||||||
|
COPY . /src
|
||||||
|
|
||||||
RUN make GORELEASER_ARGS='build --rm-dist --single-target --snapshot' goreleaser
|
RUN make GORELEASER_ARGS='build --rm-dist --single-target --snapshot' goreleaser
|
||||||
|
|
||||||
# Patch config
|
# Patch config
|
||||||
|
8
Makefile
8
Makefile
@ -16,6 +16,9 @@ GOTEST_ARGS ?= -short
|
|||||||
|
|
||||||
OPENWRT_DEVICE ?= 192.168.1.1
|
OPENWRT_DEVICE ?= 192.168.1.1
|
||||||
|
|
||||||
|
SIEGE_URLS_FILE ?= misc/siege/urls.txt
|
||||||
|
SIEGE_CONCURRENCY ?= 100
|
||||||
|
|
||||||
watch: tools/modd/bin/modd deps ## Watching updated files - live reload
|
watch: tools/modd/bin/modd deps ## Watching updated files - live reload
|
||||||
( set -o allexport && source .env && set +o allexport && tools/modd/bin/modd )
|
( set -o allexport && source .env && set +o allexport && tools/modd/bin/modd )
|
||||||
|
|
||||||
@ -105,7 +108,10 @@ grafterm: tools/grafterm/bin/grafterm
|
|||||||
tools/grafterm/bin/grafterm -c ./misc/grafterm/dashboard.json -v job=bouncer-proxy -r 5s
|
tools/grafterm/bin/grafterm -c ./misc/grafterm/dashboard.json -v job=bouncer-proxy -r 5s
|
||||||
|
|
||||||
siege:
|
siege:
|
||||||
siege -i -c 100 -f ./misc/siege/urls.txt
|
$(eval TMP := $(shell mktemp))
|
||||||
|
cat $(SIEGE_URLS_FILE) | envsubst > $(TMP)
|
||||||
|
siege -i -b -c $(SIEGE_CONCURRENCY) -f $(TMP)
|
||||||
|
rm -rf $(TMP)
|
||||||
|
|
||||||
tools/gitea-release/bin/gitea-release.sh:
|
tools/gitea-release/bin/gitea-release.sh:
|
||||||
mkdir -p tools/gitea-release/bin
|
mkdir -p tools/gitea-release/bin
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
### Utilisation
|
### Utilisation
|
||||||
|
|
||||||
- [(FR) - Ajouter un layer de type "file d'attente"](./fr/tutorials/add-queue-layer.md)
|
- [(FR) - Ajouter un layer de type "file d'attente"](./fr/tutorials/add-queue-layer.md)
|
||||||
|
- [(FR) - Amorçage d'un serveur Bouncer via la configuration](./fr/tutorials/bootstrapping.md)
|
||||||
|
|
||||||
### Développement
|
### Développement
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
5. Tester que le CLI est en capacité d'interroger l'API d'administration
|
5. Tester que le CLI est en capacité d'interroger l'API d'administration
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
bouncer admin query proxy
|
bouncer admin proxy query
|
||||||
```
|
```
|
||||||
|
|
||||||
Un message équivalent à celui ci devrait s'afficher:
|
Un message équivalent à celui ci devrait s'afficher:
|
||||||
|
47
doc/fr/tutorials/bootstrapping.md
Normal file
47
doc/fr/tutorials/bootstrapping.md
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# Amorçage d'un serveur Bouncer via la configuration
|
||||||
|
|
||||||
|
Il est possible d'amorcer des données par défaut (i.e. des "proxies" et "layers" associés) via la configuration du serveur d'administration.
|
||||||
|
|
||||||
|
> **Attention** Ce mécanisme de modifiera pas des proxies déjà existants dans la base de données du serveur Bouncer. Autrement dit, si un proxy est déjà pré-existant lors du démarrage du serveur Bouncer, il ne sera pas modifié.
|
||||||
|
|
||||||
|
La définition des proxies et layers par défaut s'effectue dans la section `bootstrap` du fichier de configuration. Deux possibilités pour définir les proxys à charger par défaut:
|
||||||
|
|
||||||
|
- Utiliser un répertoire contenant des fichiers YAML (un par proxy) en définissant le chemin du répertoire via l'attribut `bootstrap.dir`;
|
||||||
|
- Définir directement la liste des proxies via l'attribut `bootstrap.proxies`.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Configuration d'une série de proxy/layers
|
||||||
|
# à créer par défaut par le serveur d'administration
|
||||||
|
bootstrap:
|
||||||
|
# Répertoire contenant les définitions de proxy à créer
|
||||||
|
# par défaut. Les fichiers seront récupérés si ils
|
||||||
|
# correspondent au patron de nommage suivant:
|
||||||
|
#
|
||||||
|
# <bootstrap_dir>/<proxy_name>.yml
|
||||||
|
#
|
||||||
|
# Voir ci-dessous pour les attributs possibles dans les fichiers.
|
||||||
|
#
|
||||||
|
# Si l'attribut est vide ou absent le chargement des fichiers
|
||||||
|
# est désactivé.
|
||||||
|
dir: /etc/bouncer/bootstrap.d
|
||||||
|
|
||||||
|
# Tableau associatif de définition de proxies à créer par
|
||||||
|
# défaut par le serveur d'administration.
|
||||||
|
# Si `proxies` et `dir` sont tous les deux définis, les fichiers
|
||||||
|
# présents dans le répertoire `dir` surchargeront les valeurs définies
|
||||||
|
# dans `proxies`.
|
||||||
|
#
|
||||||
|
# Par défaut vide.
|
||||||
|
proxies:
|
||||||
|
# my-proxy:
|
||||||
|
# enabled: true # Activer/désactiver le proxy
|
||||||
|
# from: ["*"] # Filtre d'origine d'activation du proxy
|
||||||
|
# to: "https://example.net" # Destination du proxy
|
||||||
|
# weight: 0 # Priorité du proxy
|
||||||
|
# layers: # Layers associés au proxy
|
||||||
|
# my-layer:
|
||||||
|
# type: queue # Type du proxy
|
||||||
|
# enabled: false # Activer/désactiver le layer
|
||||||
|
# weight: 0 # Priorité du layer
|
||||||
|
# options: {"capacity": 100} # Options associées au layer
|
||||||
|
```
|
1
go.mod
1
go.mod
@ -5,6 +5,7 @@ go 1.20
|
|||||||
require (
|
require (
|
||||||
forge.cadoles.com/Cadoles/go-proxy v0.0.0-20230701194111-c6b3d482cca6
|
forge.cadoles.com/Cadoles/go-proxy v0.0.0-20230701194111-c6b3d482cca6
|
||||||
github.com/Masterminds/sprig/v3 v3.2.3
|
github.com/Masterminds/sprig/v3 v3.2.3
|
||||||
|
github.com/bsm/redislock v0.9.4
|
||||||
github.com/btcsuite/btcd/btcutil v1.1.3
|
github.com/btcsuite/btcd/btcutil v1.1.3
|
||||||
github.com/drone/envsubst v1.0.3
|
github.com/drone/envsubst v1.0.3
|
||||||
github.com/getsentry/sentry-go v0.22.0
|
github.com/getsentry/sentry-go v0.22.0
|
||||||
|
2
go.sum
2
go.sum
@ -84,6 +84,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
|
|||||||
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
|
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
|
||||||
github.com/bsm/ginkgo/v2 v2.7.0 h1:ItPMPH90RbmZJt5GtkcNvIRuGEdwlBItdNVoyzaNQao=
|
github.com/bsm/ginkgo/v2 v2.7.0 h1:ItPMPH90RbmZJt5GtkcNvIRuGEdwlBItdNVoyzaNQao=
|
||||||
github.com/bsm/gomega v1.26.0 h1:LhQm+AFcgV2M0WyKroMASzAzCAJVpAxQXv4SaI9a69Y=
|
github.com/bsm/gomega v1.26.0 h1:LhQm+AFcgV2M0WyKroMASzAzCAJVpAxQXv4SaI9a69Y=
|
||||||
|
github.com/bsm/redislock v0.9.4 h1:X/Wse1DPpiQgHbVYRE9zv6m070UcKoOGekgvpNhiSvw=
|
||||||
|
github.com/bsm/redislock v0.9.4/go.mod h1:Epf7AJLiSFwLCiZcfi6pWFO/8eAYrYpQXFxEDPoDeAk=
|
||||||
github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ=
|
github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ=
|
||||||
github.com/btcsuite/btcd v0.22.0-beta.0.20220111032746-97732e52810c/go.mod h1:tjmYdS6MLJ5/s0Fj4DbLgSbDHbEqLJrtnHecBFkdz5M=
|
github.com/btcsuite/btcd v0.22.0-beta.0.20220111032746-97732e52810c/go.mod h1:tjmYdS6MLJ5/s0Fj4DbLgSbDHbEqLJrtnHecBFkdz5M=
|
||||||
github.com/btcsuite/btcd v0.23.0/go.mod h1:0QJIIN1wwIXF/3G/m87gIwGniDMDQqjVn4SZgnFpsYY=
|
github.com/btcsuite/btcd v0.23.0/go.mod h1:0QJIIN1wwIXF/3G/m87gIwGniDMDQqjVn4SZgnFpsYY=
|
||||||
|
@ -2,12 +2,22 @@ package admin
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"forge.cadoles.com/cadoles/bouncer/internal/config"
|
||||||
|
"forge.cadoles.com/cadoles/bouncer/internal/schema"
|
||||||
"forge.cadoles.com/cadoles/bouncer/internal/setup"
|
"forge.cadoles.com/cadoles/bouncer/internal/setup"
|
||||||
|
"forge.cadoles.com/cadoles/bouncer/internal/store"
|
||||||
|
"github.com/bsm/redislock"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
|
"gitlab.com/wpetit/goweb/logger"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *Server) initRepositories(ctx context.Context) error {
|
func (s *Server) initRepositories(ctx context.Context) error {
|
||||||
|
if err := s.initRedisClient(ctx); err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
if err := s.initLayerRepository(ctx); err != nil {
|
if err := s.initLayerRepository(ctx); err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
@ -19,8 +29,16 @@ func (s *Server) initRepositories(ctx context.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Server) initRedisClient(ctx context.Context) error {
|
||||||
|
client := setup.NewRedisClient(ctx, s.redisConfig)
|
||||||
|
|
||||||
|
s.redisClient = client
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
func (s *Server) initLayerRepository(ctx context.Context) error {
|
func (s *Server) initLayerRepository(ctx context.Context) error {
|
||||||
layerRepository, err := setup.NewLayerRepository(ctx, s.redisConfig)
|
layerRepository, err := setup.NewLayerRepository(ctx, s.redisClient)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
@ -31,7 +49,7 @@ func (s *Server) initLayerRepository(ctx context.Context) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) initProxyRepository(ctx context.Context) error {
|
func (s *Server) initProxyRepository(ctx context.Context) error {
|
||||||
proxyRepository, err := setup.NewProxyRepository(ctx, s.redisConfig)
|
proxyRepository, err := setup.NewProxyRepository(ctx, s.redisClient)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
@ -40,3 +58,112 @@ func (s *Server) initProxyRepository(ctx context.Context) error {
|
|||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const bootstrapLockKey = "bouncer-bootstrap"
|
||||||
|
|
||||||
|
func (s *Server) bootstrapProxies(ctx context.Context) error {
|
||||||
|
if err := s.validateBootstrap(ctx); err != nil {
|
||||||
|
return errors.Wrap(err, "could not validate bootstrapped proxies")
|
||||||
|
}
|
||||||
|
|
||||||
|
proxyRepo := s.proxyRepository
|
||||||
|
layerRepo := s.layerRepository
|
||||||
|
|
||||||
|
locker := redislock.New(s.redisClient)
|
||||||
|
|
||||||
|
backoff := redislock.ExponentialBackoff(time.Second, time.Duration(s.bootstrapConfig.LockTimeout)*2)
|
||||||
|
|
||||||
|
logger.Debug(ctx, "acquiring proxies bootstrap lock", logger.F("lockTimeout", s.bootstrapConfig.LockTimeout))
|
||||||
|
|
||||||
|
lock, err := locker.Obtain(ctx, bootstrapLockKey, time.Duration(s.bootstrapConfig.LockTimeout), &redislock.Options{
|
||||||
|
RetryStrategy: backoff,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
if err := lock.Release(ctx); err != nil {
|
||||||
|
logger.Error(ctx, "could not release lock", logger.E(errors.WithStack(err)))
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
logger.Info(ctx, "bootstrapping proxies")
|
||||||
|
|
||||||
|
for proxyName, proxyConfig := range s.bootstrapConfig.Proxies {
|
||||||
|
_, err := s.proxyRepository.GetProxy(ctx, proxyName)
|
||||||
|
if !errors.Is(err, store.ErrNotFound) {
|
||||||
|
if err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.Info(ctx, "ignoring existing proxy", logger.F("proxyName", proxyName))
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.Info(ctx, "creating proxy", logger.F("proxyName", proxyName))
|
||||||
|
|
||||||
|
if _, err := proxyRepo.CreateProxy(ctx, proxyName, string(proxyConfig.To), proxyConfig.From...); err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err = proxyRepo.UpdateProxy(
|
||||||
|
ctx, proxyName,
|
||||||
|
store.WithProxyUpdateEnabled(bool(proxyConfig.Enabled)),
|
||||||
|
store.WithProxyUpdateWeight(int(proxyConfig.Weight)),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for layerName, layerConfig := range proxyConfig.Layers {
|
||||||
|
layerType := store.LayerType(layerConfig.Type)
|
||||||
|
layerOptions := store.LayerOptions(layerConfig.Options)
|
||||||
|
|
||||||
|
if _, err := layerRepo.CreateLayer(ctx, proxyName, layerName, layerType, layerOptions); err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := layerRepo.UpdateLayer(
|
||||||
|
ctx,
|
||||||
|
proxyName, layerName,
|
||||||
|
store.WithLayerUpdateEnabled(bool(layerConfig.Enabled)),
|
||||||
|
store.WithLayerUpdateOptions(layerOptions),
|
||||||
|
store.WithLayerUpdateWeight(int(layerConfig.Weight)),
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
const validateErrMessage = "could not validate proxy '%s': could not validate layer '%s'"
|
||||||
|
|
||||||
|
func (s *Server) validateBootstrap(ctx context.Context) error {
|
||||||
|
for proxyName, proxyConf := range s.bootstrapConfig.Proxies {
|
||||||
|
for layerName, layerConf := range proxyConf.Layers {
|
||||||
|
layerType := store.LayerType(layerConf.Type)
|
||||||
|
if !setup.LayerTypeExists(layerType) {
|
||||||
|
return errors.Errorf(validateErrMessage+": could not find layer type '%s'", proxyName, layerName, layerType)
|
||||||
|
}
|
||||||
|
|
||||||
|
layerOptionsSchema, err := setup.GetLayerOptionsSchema(layerType)
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrapf(err, validateErrMessage, proxyName, layerName)
|
||||||
|
}
|
||||||
|
|
||||||
|
rawOptions := func(opts config.InterpolatedMap) map[string]any {
|
||||||
|
return opts
|
||||||
|
}(layerConf.Options)
|
||||||
|
|
||||||
|
if err := schema.Validate(ctx, layerOptionsSchema, rawOptions); err != nil {
|
||||||
|
return errors.Wrapf(err, validateErrMessage, proxyName, layerName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
@ -51,15 +51,6 @@ func (s *Server) queryLayer(w http.ResponseWriter, r *http.Request) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func validateLayerName(v string) (store.LayerName, error) {
|
|
||||||
name, err := store.ValidateName(v)
|
|
||||||
if err != nil {
|
|
||||||
return "", errors.WithStack(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
return store.LayerName(name), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type GetLayerResponse struct {
|
type GetLayerResponse struct {
|
||||||
Layer *store.Layer `json:"layer"`
|
Layer *store.Layer `json:"layer"`
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type Option struct {
|
type Option struct {
|
||||||
|
BootstrapConfig config.BootstrapConfig
|
||||||
ServerConfig config.AdminServerConfig
|
ServerConfig config.AdminServerConfig
|
||||||
RedisConfig config.RedisConfig
|
RedisConfig config.RedisConfig
|
||||||
}
|
}
|
||||||
@ -29,3 +30,9 @@ func WithRedisConfig(conf config.RedisConfig) OptionFunc {
|
|||||||
opt.RedisConfig = conf
|
opt.RedisConfig = conf
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func WithBootstrapConfig(conf config.BootstrapConfig) OptionFunc {
|
||||||
|
return func(opt *Option) {
|
||||||
|
opt.BootstrapConfig = conf
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -114,6 +114,23 @@ func (s *Server) deleteProxy(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
layers, err := s.layerRepository.QueryLayers(ctx, proxyName)
|
||||||
|
if err != nil {
|
||||||
|
logAndCaptureError(ctx, "could not query proxy's layers", errors.WithStack(err))
|
||||||
|
api.ErrorResponse(w, http.StatusInternalServerError, api.ErrCodeUnknownError, nil)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, layer := range layers {
|
||||||
|
if err := s.layerRepository.DeleteLayer(ctx, proxyName, layer.Name); err != nil {
|
||||||
|
logAndCaptureError(ctx, "could not delete layer", errors.WithStack(err))
|
||||||
|
api.ErrorResponse(w, http.StatusInternalServerError, api.ErrCodeUnknownError, nil)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
api.DataResponse(w, http.StatusOK, DeleteProxyResponse{
|
api.DataResponse(w, http.StatusOK, DeleteProxyResponse{
|
||||||
ProxyName: proxyName,
|
ProxyName: proxyName,
|
||||||
})
|
})
|
||||||
|
@ -19,12 +19,15 @@ import (
|
|||||||
"github.com/go-chi/cors"
|
"github.com/go-chi/cors"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"github.com/prometheus/client_golang/prometheus/promhttp"
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||||||
|
"github.com/redis/go-redis/v9"
|
||||||
"gitlab.com/wpetit/goweb/logger"
|
"gitlab.com/wpetit/goweb/logger"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Server struct {
|
type Server struct {
|
||||||
serverConfig config.AdminServerConfig
|
serverConfig config.AdminServerConfig
|
||||||
redisConfig config.RedisConfig
|
redisConfig config.RedisConfig
|
||||||
|
redisClient redis.UniversalClient
|
||||||
|
bootstrapConfig config.BootstrapConfig
|
||||||
proxyRepository store.ProxyRepository
|
proxyRepository store.ProxyRepository
|
||||||
layerRepository store.LayerRepository
|
layerRepository store.LayerRepository
|
||||||
}
|
}
|
||||||
@ -53,6 +56,12 @@ func (s *Server) run(parentCtx context.Context, addrs chan net.Addr, errs chan e
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := s.bootstrapProxies(ctx); err != nil {
|
||||||
|
errs <- errors.WithStack(err)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", s.serverConfig.HTTP.Host, s.serverConfig.HTTP.Port))
|
listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", s.serverConfig.HTTP.Host, s.serverConfig.HTTP.Port))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errs <- errors.WithStack(err)
|
errs <- errors.WithStack(err)
|
||||||
@ -177,5 +186,6 @@ func NewServer(funcs ...OptionFunc) *Server {
|
|||||||
return &Server{
|
return &Server{
|
||||||
serverConfig: opt.ServerConfig,
|
serverConfig: opt.ServerConfig,
|
||||||
redisConfig: opt.RedisConfig,
|
redisConfig: opt.RedisConfig,
|
||||||
|
bootstrapConfig: opt.BootstrapConfig,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -68,6 +68,7 @@ func RunCommand() *cli.Command {
|
|||||||
srv := admin.NewServer(
|
srv := admin.NewServer(
|
||||||
admin.WithServerConfig(conf.Admin),
|
admin.WithServerConfig(conf.Admin),
|
||||||
admin.WithRedisConfig(conf.Redis),
|
admin.WithRedisConfig(conf.Redis),
|
||||||
|
admin.WithBootstrapConfig(conf.Bootstrap),
|
||||||
)
|
)
|
||||||
|
|
||||||
addrs, srvErrs := srv.Start(ctx.Context)
|
addrs, srvErrs := srv.Start(ctx.Context)
|
||||||
|
104
internal/config/bootstrap.go
Normal file
104
internal/config/bootstrap.go
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
package config
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"forge.cadoles.com/cadoles/bouncer/internal/store"
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"gopkg.in/yaml.v3"
|
||||||
|
)
|
||||||
|
|
||||||
|
type BootstrapConfig struct {
|
||||||
|
Proxies map[store.ProxyName]BootstrapProxyConfig `yaml:"proxies"`
|
||||||
|
Dir InterpolatedString `yaml:"dir"`
|
||||||
|
LockTimeout InterpolatedDuration `yaml:"lockTimeout"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *BootstrapConfig) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
||||||
|
src := struct {
|
||||||
|
Proxies map[store.ProxyName]BootstrapProxyConfig `yaml:"proxies"`
|
||||||
|
Dir InterpolatedString `yaml:"dir"`
|
||||||
|
}{
|
||||||
|
Proxies: make(map[store.ProxyName]BootstrapProxyConfig),
|
||||||
|
Dir: "",
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := unmarshal(&src); err != nil {
|
||||||
|
return errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
c.Proxies = src.Proxies
|
||||||
|
c.Dir = src.Dir
|
||||||
|
|
||||||
|
if src.Dir != "" {
|
||||||
|
proxies, err := loadBootstrapDir(string(src.Dir))
|
||||||
|
if err != nil {
|
||||||
|
return errors.Wrapf(err, "could not load bootstrap dir '%s'", src.Dir)
|
||||||
|
}
|
||||||
|
|
||||||
|
c.Proxies = overrideProxies(c.Proxies, proxies)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type BootstrapProxyConfig struct {
|
||||||
|
Enabled InterpolatedBool `yaml:"enabled"`
|
||||||
|
Weight InterpolatedInt `yaml:"weight"`
|
||||||
|
To InterpolatedString `yaml:"to"`
|
||||||
|
From InterpolatedStringSlice `yaml:"from"`
|
||||||
|
Layers map[store.LayerName]BootstrapLayerConfig `yaml:"layers"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type BootstrapLayerConfig struct {
|
||||||
|
Enabled InterpolatedBool `yaml:"enabled"`
|
||||||
|
Type InterpolatedString `yaml:"type"`
|
||||||
|
Weight InterpolatedInt `yaml:"weight"`
|
||||||
|
Options InterpolatedMap `yaml:"options"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewDefaultBootstrapConfig() BootstrapConfig {
|
||||||
|
return BootstrapConfig{
|
||||||
|
Dir: "",
|
||||||
|
LockTimeout: *NewInterpolatedDuration(30 * time.Second),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func loadBootstrapDir(dir string) (map[store.ProxyName]BootstrapProxyConfig, error) {
|
||||||
|
pattern := filepath.Join(dir, "*.yml")
|
||||||
|
|
||||||
|
files, err := filepath.Glob(pattern)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.WithStack(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
proxies := make(map[store.ProxyName]BootstrapProxyConfig)
|
||||||
|
for _, f := range files {
|
||||||
|
data, err := os.ReadFile(f)
|
||||||
|
if err != nil {
|
||||||
|
return nil, errors.Wrapf(err, "could not read file '%s'", f)
|
||||||
|
}
|
||||||
|
|
||||||
|
proxy := BootstrapProxyConfig{}
|
||||||
|
|
||||||
|
if err := yaml.Unmarshal(data, &proxy); err != nil {
|
||||||
|
return nil, errors.Wrapf(err, "could not unmarshal proxy")
|
||||||
|
}
|
||||||
|
|
||||||
|
name := store.ProxyName(strings.TrimSuffix(filepath.Base(f), filepath.Ext(f)))
|
||||||
|
proxies[name] = proxy
|
||||||
|
}
|
||||||
|
|
||||||
|
return proxies, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func overrideProxies(base map[store.ProxyName]BootstrapProxyConfig, proxies map[store.ProxyName]BootstrapProxyConfig) map[store.ProxyName]BootstrapProxyConfig {
|
||||||
|
for name, proxy := range proxies {
|
||||||
|
base[name] = proxy
|
||||||
|
}
|
||||||
|
|
||||||
|
return base
|
||||||
|
}
|
@ -2,7 +2,7 @@ package config
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"os"
|
||||||
|
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
@ -15,13 +15,14 @@ type Config struct {
|
|||||||
Redis RedisConfig `yaml:"redis"`
|
Redis RedisConfig `yaml:"redis"`
|
||||||
Logger LoggerConfig `yaml:"logger"`
|
Logger LoggerConfig `yaml:"logger"`
|
||||||
Layers LayersConfig `yaml:"layers"`
|
Layers LayersConfig `yaml:"layers"`
|
||||||
|
Bootstrap BootstrapConfig `yaml:"bootstrap"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewFromFile retrieves the configuration from the given file
|
// NewFromFile retrieves the configuration from the given file
|
||||||
func NewFromFile(path string) (*Config, error) {
|
func NewFromFile(path string) (*Config, error) {
|
||||||
config := NewDefault()
|
config := NewDefault()
|
||||||
|
|
||||||
data, err := ioutil.ReadFile(path)
|
data, err := os.ReadFile(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.Wrapf(err, "could not read file '%s'", path)
|
return nil, errors.Wrapf(err, "could not read file '%s'", path)
|
||||||
}
|
}
|
||||||
@ -48,6 +49,7 @@ func NewDefault() *Config {
|
|||||||
Logger: NewDefaultLoggerConfig(),
|
Logger: NewDefaultLoggerConfig(),
|
||||||
Redis: NewDefaultRedisConfig(),
|
Redis: NewDefaultRedisConfig(),
|
||||||
Layers: NewDefaultLayersConfig(),
|
Layers: NewDefaultLayersConfig(),
|
||||||
|
Bootstrap: NewDefaultBootstrapConfig(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package config
|
package config
|
||||||
|
|
||||||
|
import "time"
|
||||||
|
|
||||||
const (
|
const (
|
||||||
RedisModeSimple = "simple"
|
RedisModeSimple = "simple"
|
||||||
RedisModeSentinel = "sentinel"
|
RedisModeSentinel = "sentinel"
|
||||||
@ -9,11 +11,17 @@ const (
|
|||||||
type RedisConfig struct {
|
type RedisConfig struct {
|
||||||
Adresses InterpolatedStringSlice `yaml:"addresses"`
|
Adresses InterpolatedStringSlice `yaml:"addresses"`
|
||||||
Master InterpolatedString `yaml:"master"`
|
Master InterpolatedString `yaml:"master"`
|
||||||
|
ReadTimeout InterpolatedDuration `yaml:"readTimeout"`
|
||||||
|
WriteTimeout InterpolatedDuration `yaml:"writeTimeout"`
|
||||||
|
DialTimeout InterpolatedDuration `yaml:"dialTimeout"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewDefaultRedisConfig() RedisConfig {
|
func NewDefaultRedisConfig() RedisConfig {
|
||||||
return RedisConfig{
|
return RedisConfig{
|
||||||
Adresses: InterpolatedStringSlice{"localhost:6379"},
|
Adresses: InterpolatedStringSlice{"localhost:6379"},
|
||||||
Master: "",
|
Master: "",
|
||||||
|
ReadTimeout: InterpolatedDuration(30 * time.Second),
|
||||||
|
WriteTimeout: InterpolatedDuration(30 * time.Second),
|
||||||
|
DialTimeout: InterpolatedDuration(30 * time.Second),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,6 @@ import (
|
|||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"crypto/rsa"
|
"crypto/rsa"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/btcsuite/btcd/btcutil/base58"
|
"github.com/btcsuite/btcd/btcutil/base58"
|
||||||
@ -56,7 +55,7 @@ func PublicKeySet(keys ...jwk.Key) (jwk.Set, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func LoadOrGenerate(path string, size int) (jwk.Key, error) {
|
func LoadOrGenerate(path string, size int) (jwk.Key, error) {
|
||||||
data, err := ioutil.ReadFile(path)
|
data, err := os.ReadFile(path)
|
||||||
if err != nil && !errors.Is(err, os.ErrNotExist) {
|
if err != nil && !errors.Is(err, os.ErrNotExist) {
|
||||||
return nil, errors.WithStack(err)
|
return nil, errors.WithStack(err)
|
||||||
}
|
}
|
||||||
@ -72,7 +71,7 @@ func LoadOrGenerate(path string, size int) (jwk.Key, error) {
|
|||||||
return nil, errors.WithStack(err)
|
return nil, errors.WithStack(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := ioutil.WriteFile(path, data, 0o640); err != nil {
|
if err := os.WriteFile(path, data, 0o640); err != nil {
|
||||||
return nil, errors.WithStack(err)
|
return nil, errors.WithStack(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,22 +5,25 @@ import (
|
|||||||
|
|
||||||
"forge.cadoles.com/cadoles/bouncer/internal/setup"
|
"forge.cadoles.com/cadoles/bouncer/internal/setup"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
|
"github.com/redis/go-redis/v9"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (s *Server) initRepositories(ctx context.Context) error {
|
func (s *Server) initRepositories(ctx context.Context) error {
|
||||||
if err := s.initProxyRepository(ctx); err != nil {
|
client := setup.NewRedisClient(ctx, s.redisConfig)
|
||||||
|
|
||||||
|
if err := s.initProxyRepository(ctx, client); err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := s.initLayerRepository(ctx); err != nil {
|
if err := s.initLayerRepository(ctx, client); err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) initProxyRepository(ctx context.Context) error {
|
func (s *Server) initProxyRepository(ctx context.Context, client redis.UniversalClient) error {
|
||||||
proxyRepository, err := setup.NewProxyRepository(ctx, s.redisConfig)
|
proxyRepository, err := setup.NewProxyRepository(ctx, client)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
@ -30,8 +33,8 @@ func (s *Server) initProxyRepository(ctx context.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Server) initLayerRepository(ctx context.Context) error {
|
func (s *Server) initLayerRepository(ctx context.Context, client redis.UniversalClient) error {
|
||||||
layerRepository, err := setup.NewLayerRepository(ctx, s.redisConfig)
|
layerRepository, err := setup.NewLayerRepository(ctx, client)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return errors.WithStack(err)
|
return errors.WithStack(err)
|
||||||
}
|
}
|
||||||
|
@ -9,20 +9,17 @@ import (
|
|||||||
"github.com/redis/go-redis/v9"
|
"github.com/redis/go-redis/v9"
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewProxyRepository(ctx context.Context, conf config.RedisConfig) (store.ProxyRepository, error) {
|
func NewRedisClient(ctx context.Context, conf config.RedisConfig) redis.UniversalClient {
|
||||||
rdb := redis.NewUniversalClient(&redis.UniversalOptions{
|
return redis.NewUniversalClient(&redis.UniversalOptions{
|
||||||
Addrs: conf.Adresses,
|
Addrs: conf.Adresses,
|
||||||
MasterName: string(conf.Master),
|
MasterName: string(conf.Master),
|
||||||
})
|
})
|
||||||
|
|
||||||
return redisStore.NewProxyRepository(rdb), nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewLayerRepository(ctx context.Context, conf config.RedisConfig) (store.LayerRepository, error) {
|
func NewProxyRepository(ctx context.Context, client redis.UniversalClient) (store.ProxyRepository, error) {
|
||||||
rdb := redis.NewUniversalClient(&redis.UniversalOptions{
|
return redisStore.NewProxyRepository(client), nil
|
||||||
Addrs: conf.Adresses,
|
}
|
||||||
MasterName: string(conf.Master),
|
|
||||||
})
|
func NewLayerRepository(ctx context.Context, client redis.UniversalClient) (store.LayerRepository, error) {
|
||||||
|
return redisStore.NewLayerRepository(client), nil
|
||||||
return redisStore.NewLayerRepository(rdb), nil
|
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,6 @@ import (
|
|||||||
"forge.cadoles.com/cadoles/bouncer/internal/proxy/director/layer/queue"
|
"forge.cadoles.com/cadoles/bouncer/internal/proxy/director/layer/queue"
|
||||||
queueRedis "forge.cadoles.com/cadoles/bouncer/internal/proxy/director/layer/queue/redis"
|
queueRedis "forge.cadoles.com/cadoles/bouncer/internal/proxy/director/layer/queue/redis"
|
||||||
"github.com/pkg/errors"
|
"github.com/pkg/errors"
|
||||||
"github.com/redis/go-redis/v9"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -36,10 +35,6 @@ func setupQueueLayer(conf *config.Config) (director.Layer, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func newQueueAdapter(redisConf config.RedisConfig) (queue.Adapter, error) {
|
func newQueueAdapter(redisConf config.RedisConfig) (queue.Adapter, error) {
|
||||||
rdb := redis.NewUniversalClient(&redis.UniversalOptions{
|
rdb := newRedisClient(redisConf)
|
||||||
Addrs: redisConf.Adresses,
|
|
||||||
MasterName: string(redisConf.Master),
|
|
||||||
})
|
|
||||||
|
|
||||||
return queueRedis.NewAdapter(rdb, 2), nil
|
return queueRedis.NewAdapter(rdb, 2), nil
|
||||||
}
|
}
|
||||||
|
20
internal/setup/redis.go
Normal file
20
internal/setup/redis.go
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
package setup
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"forge.cadoles.com/cadoles/bouncer/internal/config"
|
||||||
|
"github.com/redis/go-redis/v9"
|
||||||
|
)
|
||||||
|
|
||||||
|
func newRedisClient(conf config.RedisConfig) redis.UniversalClient {
|
||||||
|
return redis.NewUniversalClient(&redis.UniversalOptions{
|
||||||
|
Addrs: conf.Adresses,
|
||||||
|
MasterName: string(conf.Master),
|
||||||
|
ReadTimeout: time.Duration(conf.ReadTimeout),
|
||||||
|
WriteTimeout: time.Duration(conf.WriteTimeout),
|
||||||
|
DialTimeout: time.Duration(conf.DialTimeout),
|
||||||
|
RouteByLatency: true,
|
||||||
|
ContextTimeoutEnabled: true,
|
||||||
|
})
|
||||||
|
}
|
49
misc/images/bouncer/Dockerfile
Normal file
49
misc/images/bouncer/Dockerfile
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
FROM golang:1.20 AS BUILD
|
||||||
|
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y make
|
||||||
|
|
||||||
|
ARG YQ_VERSION=4.34.1
|
||||||
|
|
||||||
|
RUN mkdir -p /usr/local/bin \
|
||||||
|
&& wget -O /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v${YQ_VERSION}/yq_linux_amd64 \
|
||||||
|
&& chmod +x /usr/local/bin/yq
|
||||||
|
|
||||||
|
COPY . /src
|
||||||
|
|
||||||
|
WORKDIR /src
|
||||||
|
|
||||||
|
RUN make GORELEASER_ARGS='build --rm-dist --single-target --snapshot' goreleaser
|
||||||
|
|
||||||
|
# Patch config
|
||||||
|
RUN /src/dist/bouncer_linux_amd64_v1/bouncer -c '' config dump > /src/dist/bouncer_linux_amd64_v1/config.yml \
|
||||||
|
&& yq -i '.layers.queue.templateDir = "/usr/share/bouncer/layers/queue/templates"' /src/dist/bouncer_linux_amd64_v1/config.yml \
|
||||||
|
&& yq -i '.admin.auth.privateKey = "/etc/bouncer/admin-key.json"' /src/dist/bouncer_linux_amd64_v1/config.yml \
|
||||||
|
&& yq -i '.redis.adresses = ["redis:6379"]' /src/dist/bouncer_linux_amd64_v1/config.yml
|
||||||
|
|
||||||
|
FROM alpine:3.18 AS RUNTIME
|
||||||
|
|
||||||
|
ARG DUMB_INIT_VERSION=1.2.5
|
||||||
|
|
||||||
|
RUN apk add --no-cache ca-certificates
|
||||||
|
|
||||||
|
RUN mkdir -p /usr/local/bin \
|
||||||
|
&& wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64 \
|
||||||
|
&& chmod +x /usr/local/bin/dumb-init
|
||||||
|
|
||||||
|
ENTRYPOINT ["/usr/local/bin/dumb-init", "--"]
|
||||||
|
|
||||||
|
RUN mkdir -p /usr/local/bin /usr/share/bouncer/bin /etc/bouncer
|
||||||
|
|
||||||
|
COPY --from=BUILD /src/dist/bouncer_linux_amd64_v1/bouncer /usr/share/bouncer/bin/bouncer
|
||||||
|
COPY --from=BUILD /src/layers /usr/share/bouncer/layers
|
||||||
|
COPY --from=BUILD /src/dist/bouncer_linux_amd64_v1/config.yml /etc/bouncer/config.yml
|
||||||
|
|
||||||
|
RUN ln -s /usr/share/bouncer/bin/bouncer /usr/local/bin/bouncer
|
||||||
|
|
||||||
|
EXPOSE 8080
|
||||||
|
EXPOSE 8081
|
||||||
|
|
||||||
|
ENV BOUNCER_CONFIG=/etc/bouncer/config.yml
|
||||||
|
|
||||||
|
CMD ["bouncer"]
|
68
misc/k8s/README.md
Normal file
68
misc/k8s/README.md
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
# Kubernetes
|
||||||
|
|
||||||
|
## Initialize your project
|
||||||
|
|
||||||
|
1. Generate the Docker configuration to enable image builds with Kaniko and communicate with reg.cadoles.com
|
||||||
|
|
||||||
|
```shell
|
||||||
|
docker login reg.cadoles.com
|
||||||
|
mkdir -p misc/k8s/kustomization/base/secrets/dockerconfig
|
||||||
|
docker --config misc/k8s/kustomization/base/secrets/dockerconfig login reg.cadoles.com
|
||||||
|
mv misc/k8s/kustomization/base/secrets/dockerconfig/config.json misc/k8s/kustomization/base/secrets/dockerconfig/.dockerconfigjson
|
||||||
|
mkdir -p misc/k8s/kustomization/overlays/dev/secrets/dockerconfig
|
||||||
|
cp misc/k8s/kustomization/base/secrets/dockerconfig/.dockerconfigjson misc/k8s/kustomization/overlays/dev/secrets/dockerconfig/.dockerconfigjson
|
||||||
|
```
|
||||||
|
|
||||||
|
## Getting started with Kind
|
||||||
|
|
||||||
|
1. Create your [Kind](https://kind.sigs.k8s.io/) cluster
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kind create cluster --config misc/k8s/kind/bouncer-cluster.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Deploy required operators
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl apply -k misc/k8s/kind/cluster --server-side
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Deploy your Bouncer development environment
|
||||||
|
|
||||||
|
```shell
|
||||||
|
skaffold dev -p dev --cleanup=false --default-repo reg.cadoles.com/<YOUR_PERSONNAL_USER_NAME>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
Bouncer will automatically create proxies based on the files present in the `misc/k8s/kustomization/overlays/dev/files/bouncer/bootstrap.d` folder.
|
||||||
|
|
||||||
|
By default, with you host web browser, open http://localhost:9000, you should see the Cadoles website.
|
||||||
|
|
||||||
|
### Using the admin API
|
||||||
|
|
||||||
|
1. Open shell in bouncer-admin pod
|
||||||
|
|
||||||
|
```shell
|
||||||
|
kubectl exec -it -n bouncer-dev bouncer-admin-<suffix> -- /bin/sh
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Create an authentication token
|
||||||
|
|
||||||
|
```shell
|
||||||
|
bouncer --config /etc/bouncer/config.yml auth create-token --role writer --subject $(whoami) > .bouncer-token
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Create a proxy and enable it
|
||||||
|
|
||||||
|
```shell
|
||||||
|
bouncer admin proxy query
|
||||||
|
```
|
||||||
|
|
||||||
|
## Benchmarking
|
||||||
|
|
||||||
|
You can use [`siege`](https://github.com/JoeDog/siege) to benchmark your instance with the Cadoles proxy.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
BASE_URL=http://localhost:9000 make siege
|
||||||
|
```
|
3
misc/k8s/kind/bouncer-cluster.yaml
Normal file
3
misc/k8s/kind/bouncer-cluster.yaml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
kind: Cluster
|
||||||
|
apiVersion: kind.x-k8s.io/v1alpha4
|
||||||
|
name: bouncer-dev
|
5
misc/k8s/kind/cluster/kustomization.yaml
Normal file
5
misc/k8s/kind/cluster/kustomization.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- https://forge.cadoles.com/CadolesKube/c-kustom//base/redis?ref=develop
|
10
misc/k8s/kustomization/base/kustomization.yaml
Normal file
10
misc/k8s/kustomization/base/kustomization.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
namespace: bouncer
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- ./resources/namespace.yaml
|
||||||
|
- ./resources/bouncer-server
|
||||||
|
- ./resources/bouncer-admin
|
||||||
|
- ./resources/redis
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
{"d":"JuBw5OsGv3rPgVczxUgtJ6iUQ41LQu4Xpu-t8IKI_z8r-BZBlbndxidPmRlGZASLGL3rhY4qw6_ScFxakrMpCreO1RMU0kqtz--N48BXFnW5tEgr1voyyKP__bPssQNn6PgkoyAd11es7MEKlBff_DtGrcSkVRgU0zDZB-vIU0aNEIZPNw0icbYqc1u_QQNPpBU9cw6P33WHhzvfCVAkZKRszwznhiPM08n1vjpiA7e1kQ8a6OC4IFZBvohkmpmyOq1g1OLRABQ83YPCjGjCAejO-jEWkbLksp6rAl_YYpCvfBAjFV76JuZq4eh5IU82LsSfi3PGYBkhxWuLY779XQ","dp":"gljHOQowGK7fVn2DJizWtgRIDJuKpKnoX2PWNJUbm2WZwcEPZalAkxn7Y-w_reLVJZuRpfKEUMS-Tn3-CwI1ZjCHPqMPTXcoG0Pe2E-Z88jOs9lW4XSOASiiM980VIvkV1xCxDJkN3NsDFQ9j9kRGnKuMnsucCW3AKaU917hXNU","dq":"mqY19JcEBDnzS70_XkAsOKqPzemOScax66b-4N6zrsgeLVlRjHffY9uCAgBWzlxOidRdQN8q23ZJB4fqsKB2w00Iw7Jxx94IoAKGjKDT5iB48Y_kdKLAwSHRTXsqA9GG3po_H_JpP_EqX4TDBYtqQZuBD_tACP9HbLYMi_V2YU8","e":"AQAB","kty":"RSA","n":"sam0X0BGcuFwX8z3Wde8cv2o_zl6A9ghpkT0tCjw8qH3GNWrbAqzncSWdHBzoChBgAbuTOVs-ixYC0KeUhwFdc8Ul-jmKJWFaS8kIr3y4EH62-vLgMuIKfaxbsyUG6KMkJfnftge1jPO4ccddNej9msxcqTxu37dcgstutwtd6QkS9p5RrNbDBc8-Z7SQ4TuxJfP8msXRnCPJ-I44yszGdQF1Np2DXakJHVn8PBrDh3iSFwORw8jxNS4oS0OlBl5aSc0t5XkkaNcSU2a50SKts290w54fl6MPJ1sLnnznLy4uu37-nrfEUvqRLDZL9B1F82RM1dtLIIiN4gnSrMlpQ","p":"wOmFPhAT_wXWzMuwtEdYIer3-CiOWxFKpFL09eEJkJ29MIUchEaoiJaUAghqPxM48llfOVaUaLbFVxmo5U3fyjNMaP-nHMUBwojutykMK-gC2R3J4bQgFWfKbGSL7M7UsextAvpq9iiOuR0LNE-xTfCgPIxHVdPZskO3yx0DkjM","q":"68OGRb0tLRjb_PpkGctcSjEz_vvcyjzxGL-fn4_h4GCw98Xrj6Y4rZ4lfWWRSeDohSvdd-ICSlxvxkQOIOcA0H7jyJcBC0KDs4hX5BRGJNDri3QX0ry4_F1ptAdbfiFgQGqCfMRCr7L60Tfd_6tLczvny7eEBKQNGdj6dLfhgMc","qi":"DFwixyxUDf0REPLLa8hOKieRL95_AH9rbYWzStBOdSjKWra5l0reD6a4bbvAYvl0e8qCcRI6S8Nzpz0BYm4sJL7poVOnjxqvBY3Q9Ppf4Mq8lW39pOCJcqOHIvvYHsMjTC5uwp7Yg2p0GvxuUibbyNL1PXf6WZ_szVP_oSMrCXA"}
|
@ -0,0 +1,40 @@
|
|||||||
|
admin:
|
||||||
|
http:
|
||||||
|
host: 127.0.0.1
|
||||||
|
port: 8081
|
||||||
|
cors:
|
||||||
|
allowedOrigins:
|
||||||
|
- http://localhost:3001
|
||||||
|
allowCredentials: true
|
||||||
|
allowMethods:
|
||||||
|
- POST
|
||||||
|
- GET
|
||||||
|
- PUT
|
||||||
|
- DELETE
|
||||||
|
allowedHeaders:
|
||||||
|
- Origin
|
||||||
|
- Accept
|
||||||
|
- Content-Type
|
||||||
|
- Authorization
|
||||||
|
- Sentry-Trace
|
||||||
|
debug: false
|
||||||
|
auth:
|
||||||
|
issuer: http://127.0.0.1:8081
|
||||||
|
privateKey: /etc/bouncer/admin-key.json
|
||||||
|
metrics:
|
||||||
|
enabled: true
|
||||||
|
endpoint: /.bouncer/metrics
|
||||||
|
basicAuth: null
|
||||||
|
|
||||||
|
redis:
|
||||||
|
addresses:
|
||||||
|
- rfs-bouncer-redis:${RFS_BOUNCER_REDIS_SERVICE_PORT}
|
||||||
|
master: mymaster
|
||||||
|
|
||||||
|
logger:
|
||||||
|
level: ${BOUNCER_LOG_LEVEL}
|
||||||
|
format: human
|
||||||
|
|
||||||
|
bootstrap:
|
||||||
|
dir: /etc/bouncer/bootstrap.d
|
||||||
|
lockTimeout: 30s
|
@ -0,0 +1,16 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- ./resources/service.yaml
|
||||||
|
- ./resources/deployment.yaml
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: bouncer-admin-config
|
||||||
|
files:
|
||||||
|
- ./files/config.yml
|
||||||
|
- ./files/admin-key.json
|
||||||
|
- name: bouncer-admin-bootstrap
|
||||||
|
- name: bouncer-admin-env
|
||||||
|
literals:
|
||||||
|
- BOUNCER_LOG_LEVEL=2
|
@ -0,0 +1,51 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: bouncer-admin
|
||||||
|
labels:
|
||||||
|
app: bouncer-admin
|
||||||
|
io.kompose.service: bouncer-admin
|
||||||
|
spec:
|
||||||
|
replicas: 3
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: bouncer-admin
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: bouncer-admin
|
||||||
|
io.kompose.service: bouncer-admin
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: bouncer-admin
|
||||||
|
image: bouncer
|
||||||
|
command:
|
||||||
|
[
|
||||||
|
"bouncer",
|
||||||
|
"--debug",
|
||||||
|
"-c",
|
||||||
|
"/etc/bouncer/config.yml",
|
||||||
|
"server",
|
||||||
|
"admin",
|
||||||
|
"run",
|
||||||
|
]
|
||||||
|
imagePullPolicy: Always
|
||||||
|
resources: {}
|
||||||
|
ports:
|
||||||
|
- name: bouncer-admin
|
||||||
|
containerPort: 8081
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: bouncer-admin-env
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /etc/bouncer/
|
||||||
|
name: bouncer-admin-config
|
||||||
|
- mountPath: /etc/bouncer/bootstrap.d
|
||||||
|
name: bouncer-admin-bootstrap
|
||||||
|
volumes:
|
||||||
|
- name: bouncer-admin-config
|
||||||
|
configMap:
|
||||||
|
name: bouncer-admin-config
|
||||||
|
- name: bouncer-admin-bootstrap
|
||||||
|
configMap:
|
||||||
|
name: bouncer-admin-bootstrap
|
@ -0,0 +1,14 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
io.kompose.service: bouncer-admin
|
||||||
|
name: bouncer-admin
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- name: bouncer-admin
|
||||||
|
port: 8081
|
||||||
|
targetPort: bouncer-admin
|
||||||
|
selector:
|
||||||
|
io.kompose.service: bouncer-admin
|
@ -0,0 +1,22 @@
|
|||||||
|
proxy:
|
||||||
|
http:
|
||||||
|
host: 0.0.0.0
|
||||||
|
port: 8080
|
||||||
|
metrics:
|
||||||
|
enabled: true
|
||||||
|
endpoint: /.bouncer/metrics
|
||||||
|
basicAuth: null
|
||||||
|
|
||||||
|
layers:
|
||||||
|
queue:
|
||||||
|
templateDir: /usr/share/bouncer/layers/queue/templates
|
||||||
|
defaultKeepAlive: 1m0s
|
||||||
|
|
||||||
|
redis:
|
||||||
|
addresses:
|
||||||
|
- rfs-bouncer-redis:${RFS_BOUNCER_REDIS_SERVICE_PORT}
|
||||||
|
master: mymaster
|
||||||
|
|
||||||
|
logger:
|
||||||
|
level: ${BOUNCER_LOG_LEVEL}
|
||||||
|
format: human
|
@ -0,0 +1,14 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- ./resources/service.yaml
|
||||||
|
- ./resources/deployment.yaml
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: bouncer-server-config
|
||||||
|
files:
|
||||||
|
- ./files/config.yml
|
||||||
|
- name: bouncer-server-env
|
||||||
|
literals:
|
||||||
|
- BOUNCER_LOG_LEVEL=2
|
@ -0,0 +1,45 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: bouncer-server
|
||||||
|
labels:
|
||||||
|
app: bouncer-server
|
||||||
|
io.kompose.service: bouncer-server
|
||||||
|
spec:
|
||||||
|
replicas: 3
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: bouncer-server
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: bouncer-server
|
||||||
|
io.kompose.service: bouncer-server
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: bouncer-server
|
||||||
|
image: bouncer
|
||||||
|
command:
|
||||||
|
[
|
||||||
|
"bouncer",
|
||||||
|
"-c",
|
||||||
|
"/etc/bouncer/config.yml",
|
||||||
|
"server",
|
||||||
|
"proxy",
|
||||||
|
"run",
|
||||||
|
]
|
||||||
|
imagePullPolicy: Always
|
||||||
|
envFrom:
|
||||||
|
- configMapRef:
|
||||||
|
name: bouncer-server-env
|
||||||
|
resources: {}
|
||||||
|
ports:
|
||||||
|
- name: bouncer-server
|
||||||
|
containerPort: 8080
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /etc/bouncer/
|
||||||
|
name: bouncer-server-config
|
||||||
|
volumes:
|
||||||
|
- name: bouncer-server-config
|
||||||
|
configMap:
|
||||||
|
name: bouncer-server-config
|
@ -0,0 +1,14 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
io.kompose.service: bouncer-server
|
||||||
|
name: bouncer-server
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- name: bouncer-server
|
||||||
|
port: 8080
|
||||||
|
targetPort: bouncer-server
|
||||||
|
selector:
|
||||||
|
io.kompose.service: bouncer-server
|
4
misc/k8s/kustomization/base/resources/namespace.yaml
Normal file
4
misc/k8s/kustomization/base/resources/namespace.yaml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Namespace
|
||||||
|
metadata:
|
||||||
|
name: bouncer
|
@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- ./resources/redis-cluster.yaml
|
||||||
|
|
||||||
|
vars:
|
||||||
|
- name: REDIS_SERVICE_NAME
|
||||||
|
objref:
|
||||||
|
name: bouncer-redis
|
||||||
|
apiVersion: databases.spotahome.com/v1
|
||||||
|
kind: RedisFailover
|
||||||
|
fieldref:
|
||||||
|
fieldpath: metadata.name
|
@ -0,0 +1,21 @@
|
|||||||
|
apiVersion: databases.spotahome.com/v1
|
||||||
|
kind: RedisFailover
|
||||||
|
metadata:
|
||||||
|
name: bouncer-redis
|
||||||
|
spec:
|
||||||
|
sentinel:
|
||||||
|
replicas: 3
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
limits:
|
||||||
|
memory: 100Mi
|
||||||
|
redis:
|
||||||
|
replicas: 3
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 100m
|
||||||
|
memory: 100Mi
|
||||||
|
limits:
|
||||||
|
cpu: 400m
|
||||||
|
memory: 500Mi
|
@ -0,0 +1,11 @@
|
|||||||
|
from: ["*"]
|
||||||
|
to: https://www.cadoles.com
|
||||||
|
enabled: true
|
||||||
|
weight: 0
|
||||||
|
layers:
|
||||||
|
my-queue:
|
||||||
|
type: queue
|
||||||
|
enabled: true
|
||||||
|
weight: 0
|
||||||
|
options:
|
||||||
|
capacity: 10
|
32
misc/k8s/kustomization/overlays/dev/kustomization.yaml
Normal file
32
misc/k8s/kustomization/overlays/dev/kustomization.yaml
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||||
|
kind: Kustomization
|
||||||
|
namespace: bouncer-dev
|
||||||
|
|
||||||
|
resources:
|
||||||
|
- ../../base
|
||||||
|
|
||||||
|
secretGenerator:
|
||||||
|
- files:
|
||||||
|
- secrets/dockerconfig/.dockerconfigjson
|
||||||
|
name: regcred-dev
|
||||||
|
type: kubernetes.io/dockerconfigjson
|
||||||
|
|
||||||
|
patches:
|
||||||
|
- path: patches/add-registry-pull-secret.patch.yaml
|
||||||
|
target:
|
||||||
|
kind: Deployment
|
||||||
|
version: v1
|
||||||
|
|
||||||
|
configMapGenerator:
|
||||||
|
- name: bouncer-admin-bootstrap
|
||||||
|
behavior: merge
|
||||||
|
files:
|
||||||
|
- ./files/bouncer/bootstrap.d/cadoles.yml
|
||||||
|
- name: bouncer-admin-env
|
||||||
|
behavior: merge
|
||||||
|
literals:
|
||||||
|
- BOUNCER_LOG_LEVEL=0
|
||||||
|
- name: bouncer-server-env
|
||||||
|
behavior: merge
|
||||||
|
literals:
|
||||||
|
- BOUNCER_LOG_LEVEL=0
|
@ -0,0 +1,4 @@
|
|||||||
|
- op: add
|
||||||
|
path: "/spec/template/spec/imagePullSecrets"
|
||||||
|
value:
|
||||||
|
- name: regcred-dev
|
@ -47,10 +47,6 @@ admin:
|
|||||||
# Authentification "basic auth" sur la page
|
# Authentification "basic auth" sur la page
|
||||||
# de publication
|
# de publication
|
||||||
# Mettre à null pour désactiver l'authentification
|
# Mettre à null pour désactiver l'authentification
|
||||||
# Les couples d'identifiants doivent être spécifiés sous la forme:
|
|
||||||
# basicAuth:
|
|
||||||
# credentials:
|
|
||||||
# <username>: <password>
|
|
||||||
basicAuth: null
|
basicAuth: null
|
||||||
|
|
||||||
# Configuration de l'intégration Sentry
|
# Configuration de l'intégration Sentry
|
||||||
@ -94,10 +90,8 @@ proxy:
|
|||||||
# de publication
|
# de publication
|
||||||
# Mettre à null pour désactiver l'authentification
|
# Mettre à null pour désactiver l'authentification
|
||||||
basicAuth:
|
basicAuth:
|
||||||
# Les couples d'identifiants doivent être spécifiés
|
|
||||||
# sous la forme "<username>: <password>"
|
|
||||||
credentials:
|
credentials:
|
||||||
prometheus: changeme
|
prom: etheus
|
||||||
|
|
||||||
# Configuration du transport HTTP(S)
|
# Configuration du transport HTTP(S)
|
||||||
# Voir https://pkg.go.dev/net/http#Transport
|
# Voir https://pkg.go.dev/net/http#Transport
|
||||||
@ -147,12 +141,15 @@ proxy:
|
|||||||
#
|
#
|
||||||
# Les modes "standalone", "sentinel" et "cluster" de Redis sont supportés:
|
# Les modes "standalone", "sentinel" et "cluster" de Redis sont supportés:
|
||||||
# - Mode "standalone": renseigner une seule entrée dans redis.addresses;
|
# - Mode "standalone": renseigner une seule entrée dans redis.addresses;
|
||||||
# - Mode "sentinel": renseigner une adresse dans redis.master et une ou plusieurs adresses dans redis.addresses;
|
# - Mode "sentinel": renseigner le nom du master sentinel dans redis.master et une ou plusieurs adresses dans redis.addresses;
|
||||||
# - Mode "cluster": renseigner plusieurs adresses dans redis.addresses et laisser redis.master vide.
|
# - Mode "cluster": renseigner plusieurs adresses dans redis.addresses et laisser redis.master vide.
|
||||||
redis:
|
redis:
|
||||||
addresses:
|
addresses:
|
||||||
- localhost:6379
|
- localhost:6379
|
||||||
master: ""
|
master: ""
|
||||||
|
writeTimeout: 30s
|
||||||
|
readTimeout: 30s
|
||||||
|
dialTimeout: 30s
|
||||||
|
|
||||||
# Configuration des logs
|
# Configuration des logs
|
||||||
logger:
|
logger:
|
||||||
@ -162,7 +159,7 @@ logger:
|
|||||||
# 2 - WARNING
|
# 2 - WARNING
|
||||||
# 3 - ERROR
|
# 3 - ERROR
|
||||||
# 4 - FATAL
|
# 4 - FATAL
|
||||||
level: 1
|
level: 2
|
||||||
# Format des logs, "human" ou "json"
|
# Format des logs, "human" ou "json"
|
||||||
format: human
|
format: human
|
||||||
|
|
||||||
@ -180,3 +177,36 @@ layers:
|
|||||||
# Répertoire contenant les templates
|
# Répertoire contenant les templates
|
||||||
templateDir: "/etc/bouncer/layers/circuitbreaker/templates"
|
templateDir: "/etc/bouncer/layers/circuitbreaker/templates"
|
||||||
|
|
||||||
|
# Configuration d'une série de proxy/layers
|
||||||
|
# à créer par défaut par le serveur d'administration
|
||||||
|
bootstrap:
|
||||||
|
# Répertoire contenant les définitions de proxy à créer
|
||||||
|
# par défaut. Les fichiers seront récupérés si ils
|
||||||
|
# correspondent au patron de nommage suivant:
|
||||||
|
#
|
||||||
|
# <bootstrap_dir>/<proxy_name>.yml
|
||||||
|
#
|
||||||
|
# Si l'attribut est vide ou absent le chargement des fichiers
|
||||||
|
# est désactivé.
|
||||||
|
dir: /etc/bouncer/bootstrap.d
|
||||||
|
# Délai d'expiration du verrou distribué utilisé lors du chargement
|
||||||
|
# des définitions de proxy par défaut.
|
||||||
|
lockTimeout: 30s
|
||||||
|
# Tableau associatif de définition de proxies à créer par
|
||||||
|
# défaut par le serveur d'administration.
|
||||||
|
# Si `proxies` et `dir` sont tous les deux définis, les fichiers
|
||||||
|
# présents dans le répertoire `dir` surchargeront les valeurs définies
|
||||||
|
# dans `proxies`.
|
||||||
|
# Par défault non défini
|
||||||
|
proxies:
|
||||||
|
# my-proxy:
|
||||||
|
# enabled: true
|
||||||
|
# from: ["*"]
|
||||||
|
# to: "https://example.net"
|
||||||
|
# weight: 0
|
||||||
|
# layers:
|
||||||
|
# my-layer:
|
||||||
|
# type: queue
|
||||||
|
# enabled: false
|
||||||
|
# weight: 0
|
||||||
|
# options: {"capacity": 100}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
http://localhost:8080/blog/
|
${BASE_URL}/blog/
|
||||||
http://localhost:8080/services/
|
${BASE_URL}/services/
|
||||||
http://localhost:8080/
|
${BASE_URL}
|
||||||
http://localhost:8080/recrutement/
|
${BASE_URL}/recrutement/
|
||||||
http://localhost:8080/faq/
|
${BASE_URL}/faq/
|
||||||
http://localhost:8080/societe/histoire/
|
${BASE_URL}/societe/histoire/
|
53
skaffold.yaml
Normal file
53
skaffold.yaml
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
apiVersion: skaffold/v3
|
||||||
|
kind: Config
|
||||||
|
|
||||||
|
metadata:
|
||||||
|
name: bouncer
|
||||||
|
|
||||||
|
manifests:
|
||||||
|
kustomize:
|
||||||
|
paths:
|
||||||
|
- misc/k8s/kustomization/base
|
||||||
|
|
||||||
|
profiles:
|
||||||
|
- name: dev
|
||||||
|
manifests:
|
||||||
|
kustomize:
|
||||||
|
paths:
|
||||||
|
- misc/k8s/kustomization/overlays/dev
|
||||||
|
activation:
|
||||||
|
- command: dev
|
||||||
|
|
||||||
|
build:
|
||||||
|
local:
|
||||||
|
push: true
|
||||||
|
|
||||||
|
tagPolicy:
|
||||||
|
sha256: {}
|
||||||
|
|
||||||
|
artifacts:
|
||||||
|
- image: bouncer
|
||||||
|
context: .
|
||||||
|
sync:
|
||||||
|
infer:
|
||||||
|
- cmd/**
|
||||||
|
- internal/**
|
||||||
|
- layers/**
|
||||||
|
- misc/**
|
||||||
|
docker:
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
statusCheckDeadlineSeconds: 600
|
||||||
|
|
||||||
|
portForward:
|
||||||
|
- resourceType: service
|
||||||
|
resourceName: bouncer-admin
|
||||||
|
namespace: bouncer-dev
|
||||||
|
port: 8081
|
||||||
|
localPort: 9999
|
||||||
|
- resourceType: service
|
||||||
|
resourceName: bouncer-server
|
||||||
|
namespace: bouncer-dev
|
||||||
|
port: 8080
|
||||||
|
localPort: 9000 # *Optional*
|
Loading…
x
Reference in New Issue
Block a user