Documentation ¶
Overview ¶
Package client contains interface for github client.
Index ¶
Constants ¶
View Source
const ( // EnvGitProvider is the provider name. EnvGitProvider = "GIT_PROVIDER" // EnvGitOrgName is the git org name. EnvGitOrgName = "GIT_ORG_NAME" // EnvGitRepositoryName is the repository name. EnvGitRepositoryName = "GIT_REPOSITORY_NAME" // EnvGitAccessToken used for accessing private repositories. EnvGitAccessToken = "GIT_ACCESS_TOKEN" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client interface { DownloadReleaseAssets(ctx context.Context, release *github.RepositoryRelease, path string, assetlist []string) error GetReleaseByTag(ctx context.Context, tag string) (*github.RepositoryRelease, *github.Response, error) ListRelease(ctx context.Context) ([]*github.RepositoryRelease, *github.Response, error) }
Client contains all functions to talk to Github API.
type GitConfig ¶
type GitConfig struct { GitProvider string GitOrgName string GitRepoName string GitAccessToken string }
GitConfig contains necessary data to connect to github.
func NewGitConfig ¶
NewGitConfig ensures the environment variables required for the operator to run are set. Returns false if any of the required environment variables are not set.
Click to show internal directories.
Click to hide internal directories.