Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
flux2
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
fluxcd
flux2
Commits
f6626b89
Commit
f6626b89
authored
4 years ago
by
stefanprodan
Browse files
Options
Downloads
Patches
Plain Diff
Add GitHub bootstrap e2e test
parent
b1e66f81
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/bootstrap.yaml
+48
-0
48 additions, 0 deletions
.github/workflows/bootstrap.yaml
with
48 additions
and
0 deletions
.github/workflows/bootstrap.yaml
0 → 100644
+
48
−
0
View file @
f6626b89
name
:
bootstrap
on
:
push
:
branches
:
-
master
-
refac
jobs
:
github
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v2
-
name
:
Restore Go cache
uses
:
actions/cache@v1
with
:
path
:
~/go/pkg/mod
key
:
${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys
:
|
${{ runner.os }}-go-
-
name
:
Setup Go
uses
:
actions/setup-go@v2
with
:
go-version
:
1.14.x
-
name
:
Setup Kubernetes
uses
:
engineerd/setup-kind@v0.4.0
with
:
image
:
kindest/node:v1.16.9
-
name
:
Set outputs
id
:
vars
run
:
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
-
name
:
Build
run
:
sudo go build -o ./bin/gotk ./cmd/gotk
-
name
:
gotk bootstrap github
run
:
|
./bin/gotk bootstrap github \
--owner=fluxcd-testing \
--repository=gotk-test-${{ steps.vars.outputs.sha_short }} \
--path=test-cluster
env
:
GITHUB_TOKEN
:
${{ secrets.GITPROVIDER_BOT_TOKEN }}
-
name
:
Debug failure
if
:
failure()
run
:
|
kubectl -n gitops-system get all
kubectl -n gitops-system logs deploy/source-controller
kubectl -n gitops-system logs deploy/kustomize-controller
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment