## tk bootstrap github Bootstrap toolkit components in a GitHub repository ### Synopsis The bootstrap github command creates the GitHub repository if it doesn't exists and commits the toolkit components manifests to the master branch. Then it configures the target cluster to synchronize with the repository. If the toolkit components are present on the cluster, the bootstrap command will perform an upgrade if needed. ``` tk bootstrap github [flags] ``` ### Examples ``` # Create a GitHub personal access token and export it as an env var export GITHUB_TOKEN= # Run bootstrap for a private repo owned by a GitHub organization tk bootstrap github --owner= --repository= # Run bootstrap for a private repo and assign organization teams to it tk bootstrap github --owner= --repository= --team= --team= # Run bootstrap for a repository path tk bootstrap github --owner= --repository= --path=dev-cluster # Run bootstrap for a public repository on a personal account tk bootstrap github --owner= --repository= --private=false --personal=true # Run bootstrap for a private repo hosted on GitHub Enterprise tk bootstrap github --owner= --repository= --hostname= ``` ### Options ``` -h, --help help for github --hostname string GitHub hostname (default "github.com") --interval duration sync interval (default 1m0s) --owner string GitHub user or organization name --path string repository path, when specified the cluster sync will be scoped to this path --personal is personal repository --private is private repository (default true) --repository string GitHub repository name --team stringArray GitHub team to be given maintainer access ``` ### Options inherited from parent commands ``` --components strings list of components, accepts comma-separated values (default [source-controller,kustomize-controller,helm-controller,notification-controller]) --image-pull-secret string Kubernetes secret name used for pulling the toolkit images from a private registry --kubeconfig string path to the kubeconfig file (default "~/.kube/config") --namespace string the namespace scope for this operation (default "gitops-system") --registry string container registry where the toolkit images are published (default "docker.io/fluxcd") --timeout duration timeout for this operation (default 5m0s) --verbose print generated objects -v, --version string toolkit version (default "latest") ``` ### SEE ALSO * [tk bootstrap](tk_bootstrap.md) - Bootstrap toolkit components