Files
goma-operator/internal/controller/var.go

23 lines
696 B
Go
Raw Normal View History

2024-11-27 08:29:51 +01:00
package controller
const (
AppImageName = "jkaninda/goma-gateway"
2024-11-27 20:54:41 +01:00
ConfigPath = "/etc/goma"
CertsPath = "/etc/goma/certs"
2024-11-27 08:29:51 +01:00
BasicAuth = "basic" // basic authentication middlewares
JWTAuth = "jwt" // JWT authentication middlewares
OAuth = "oauth"
ratelimit = "ratelimit"
RateLimit = "rateLimit"
BelongsTo = "goma-gateway"
GatewayConfigVersion = "1.0"
FinalizerName = "gomaproj.github.io/resources.finalizer"
2024-11-27 08:29:51 +01:00
ConfigName = "goma.yml"
2024-11-27 20:54:41 +01:00
TLSCertFile = "/etc/goma/certs/tls.crt"
TLSKeyFile = "/etc/goma/certs/tls.key"
2024-11-27 08:29:51 +01:00
)
var (
ReplicaCount int32 = 1
)