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

This commit is contained in:
2023-11-08 20:43:36 +01:00
parent bbaa89d4c2
commit 1a03808847
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),