Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mybee
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
mybee
Commits
e484d288
Unverified
Commit
e484d288
authored
Aug 25, 2020
by
Ivan Vandot
Committed by
GitHub
Aug 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix if statement and set kube config (#611)
parent
3bd536b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
beekeeper.yaml
.github/workflows/beekeeper.yaml
+3
-1
go.yml
.github/workflows/go.yml
+1
-1
No files found.
.github/workflows/beekeeper.yaml
View file @
e484d288
...
@@ -26,10 +26,12 @@ jobs:
...
@@ -26,10 +26,12 @@ jobs:
chmod +x beekeeper
chmod +x beekeeper
-
name
:
Set testing cluster (DNS discovery)
-
name
:
Set testing cluster (DNS discovery)
run
:
./beeinfra.sh install --dns-disco --local -r "${REPLICA}" --bootnode /dnsaddr/localhost
run
:
./beeinfra.sh install --dns-disco --local -r "${REPLICA}" --bootnode /dnsaddr/localhost
-
name
:
Add entries to /etc/hosts
-
name
:
Add entries to /etc/hosts
and set kube config
run
:
|
run
:
|
echo -e "127.0.0.10\tregistry.localhost" | sudo tee -a /etc/hosts
echo -e "127.0.0.10\tregistry.localhost" | sudo tee -a /etc/hosts
for ((i=0; i<REPLICA; i++)); do echo -e "127.0.1.$((i+1))\tbee-${i}.localhost bee-${i}-debug.localhost"; done | sudo tee -a /etc/hosts
for ((i=0; i<REPLICA; i++)); do echo -e "127.0.1.$((i+1))\tbee-${i}.localhost bee-${i}-debug.localhost"; done | sudo tee -a /etc/hosts
mkdir ~/.kube
cp $(k3d get-kubeconfig --name='k3s-default') ~/.kube/config
-
name
:
Test fullconnectivity
-
name
:
Test fullconnectivity
run
:
./beekeeper check fullconnectivity --api-scheme http --debug-api-scheme http --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}"
run
:
./beekeeper check fullconnectivity --api-scheme http --debug-api-scheme http --disable-namespace --debug-api-domain localhost --api-domain localhost --node-count "${REPLICA}"
-
name
:
Test pingpong
-
name
:
Test pingpong
...
...
.github/workflows/go.yml
View file @
e484d288
...
@@ -69,7 +69,7 @@ jobs:
...
@@ -69,7 +69,7 @@ jobs:
env
:
env
:
DEEPSOURCE_DSN
:
${{ secrets.DEEPSOURCE_DSN }}
DEEPSOURCE_DSN
:
${{ secrets.DEEPSOURCE_DSN }}
-
name
:
Trigger Beekeeper
-
name
:
Trigger Beekeeper
if
:
success() && ${{ github.ref }} == "refs/heads/master" && matrix.os == 'ubuntu-latest'
if
:
github.ref == 'refs/heads/master' && matrix.os == 'ubuntu-latest' && success()
uses
:
peter-evans/repository-dispatch@v1
uses
:
peter-evans/repository-dispatch@v1
with
:
with
:
token
:
${{ secrets.REPO_GHA_PAT }}
token
:
${{ secrets.REPO_GHA_PAT }}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment