This commit is contained in:
parent
8cde2ae854
commit
bcfb5828bd
43
.drone.yml
43
.drone.yml
@ -1,21 +1,50 @@
|
|||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: exec
|
type: docker
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
|
image: golang
|
||||||
environment:
|
environment:
|
||||||
CGO_ENABLED: 0
|
CGO_ENABLED: 0
|
||||||
commands:
|
commands:
|
||||||
|
- go vet
|
||||||
- go build
|
- go build
|
||||||
|
|
||||||
- name: stage
|
- name: stage
|
||||||
|
image: alpine
|
||||||
commands:
|
commands:
|
||||||
- stage_artifact.sh dn42grcd dn42grcd StaticRoot
|
- mkdir artifacts
|
||||||
|
- mv dn42grcd artifacts/
|
||||||
|
- tar -cvzf artifacts/StaticRoot.tar.gz StaticRoot
|
||||||
|
|
||||||
|
- name: upload
|
||||||
|
image: plugins/s3
|
||||||
|
settings:
|
||||||
|
bucket: artifacts
|
||||||
|
access_key:
|
||||||
|
from_secret: MINIO_ACCESS_KEY
|
||||||
|
secret_key:
|
||||||
|
from_secret: MINIO_SECRET_KEY
|
||||||
|
endpoint: https://minio.burble.dn42
|
||||||
|
region: uk-lon3
|
||||||
|
path_style: true
|
||||||
|
source: artifacts/*
|
||||||
|
strip_prefix: artifacts/
|
||||||
|
target: /dn42grcd/${DRONE_BRANCH}
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: secret
|
||||||
|
name: MINIO_ACCESS_KEY
|
||||||
|
get:
|
||||||
|
path: burble.dn42/kv/data/drone/minio
|
||||||
|
name: ACCESS_KEY
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: secret
|
||||||
|
name: MINIO_SECRET_KEY
|
||||||
|
get:
|
||||||
|
path: burble.dn42/kv/data/drone/minio
|
||||||
|
name: SECRET_KEY
|
||||||
|
|
||||||
- name: promote
|
|
||||||
commands:
|
|
||||||
- promote_artifact.sh dn42grcd
|
|
||||||
when:
|
|
||||||
branch: main
|
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
<app-timer class="float-right"></app-timer>
|
<app-timer class="float-right"></app-timer>
|
||||||
<b-nav tabs>
|
<b-nav tabs>
|
||||||
<b-nav-item to="flaps" exact exact-active-class="active">Flapping Routes</b-nav-item>
|
<b-nav-item to="flaps" exact exact-active-class="active">Flapping Routes</b-nav-item>
|
||||||
<b-nav-item to="roa" exact exact-active-class="active">ROA Failures</b-nav-item>
|
<!-- <b-nav-item to="roa" exact exact-active-class="active">ROA Failures</b-nav-item> -->
|
||||||
</b-nav>
|
</b-nav>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user