grpc endpoint must not be in quotes
All checks were successful
Pipeline was successful

This commit is contained in:
Tobias Trabelsi 2023-11-08 20:43:36 +01:00
parent bbaa89d4c2
commit 1a03808847
Signed by: lerentis
GPG Key ID: FF0C2839718CAF2E
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ type UserDataConfig struct {
func generateConfig(cfg *config.Config, name string) (string, error) {
envConfig := map[string]interface{}{
"WOODPECKER_SERVER": fmt.Sprintf(`"%s"`, cfg.WoodpeckerGrpc),
"WOODPECKER_SERVER": fmt.Sprintf("%s", cfg.WoodpeckerGrpc),
"WOODPECKER_GRPC_SECURE": true,
"WOODPECKER_AGENT_SECRET": fmt.Sprintf(`"%s"`, cfg.WoodpeckerAgentSecret),
"WOODPECKER_FILTER_LABELS": fmt.Sprintf(`"%s"`, cfg.WoodpeckerLabelSelector),

View File

@ -40,7 +40,7 @@ write_files:
- WOODPECKER_FILTER_LABELS="uploadfilter24.eu/instance-role=WoodpeckerTest"
- WOODPECKER_GRPC_SECURE=true
- WOODPECKER_HOSTNAME="test-instance"
- WOODPECKER_SERVER="grpc-test.woodpecker.test.tld:443"
- WOODPECKER_SERVER=grpc-test.woodpecker.test.tld:443
path: /root/docker-compose.yml
runcmd:
- [ sh, -xc, "cd /root; docker run --rm --privileged multiarch/qemu-user-static --reset -p yes; docker compose up -d" ]