Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Test build pipeline #3473

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/provisioner.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ on:
branches:
- main
paths:
- ./components/provisioner/**
- ./components/provisioner
- ./.github/workflows/provisioner.yaml

pull_request_target:
types: [opened, synchronize, reopened]
paths:
- ./components/provisioner/**
- ./components/provisioner
- ./.github/workflows/provisioner.yaml

permissions:
Expand Down
5 changes: 3 additions & 2 deletions components/provisioner/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ package main
import (
"context"
"fmt"
"github.com/kyma-project/control-plane/components/provisioner/internal/util/testkit"
"net/http"
"sync"
"time"

"github.com/kyma-project/control-plane/components/provisioner/internal/util/testkit"

"sigs.k8s.io/controller-runtime/pkg/client"

"github.com/99designs/gqlgen/graphql/handler"
Expand Down Expand Up @@ -123,8 +124,8 @@ func main() {
log.Warnf("Invalid log level: '%s', defaulting to 'info'", cfg.LogLevel)
logLevel = log.InfoLevel
}
log.SetLevel(logLevel)

log.SetLevel(logLevel)
log.Infof("Starting Provisioner")
log.Infof("Config: %s", cfg.String())

Expand Down
Loading