mirror of
https://github.com/actions/actions-runner-controller.git
synced 2026-03-15 22:02:48 +08:00
17 lines
412 B
Go
17 lines
412 B
Go
package object
|
|
|
|
import (
|
|
"github.com/actions/actions-runner-controller/apis/actions.github.com/v1alpha1"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
)
|
|
|
|
type ActionsGitHubObject interface {
|
|
client.Object
|
|
GitHubConfigUrl() string
|
|
GitHubConfigSecret() string
|
|
GitHubProxy() *v1alpha1.ProxyConfig
|
|
GitHubServerTLS() *v1alpha1.TLSConfig
|
|
VaultConfig() *v1alpha1.VaultConfig
|
|
VaultProxy() *v1alpha1.ProxyConfig
|
|
}
|