You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.2 KiB
132 lines
4.2 KiB
--- |
|
kind: pipeline |
|
name: notify-pipeline-start |
|
type: kubernetes |
|
|
|
clone: |
|
disable: true |
|
|
|
steps: |
|
- name: slack |
|
image: plugins/slack |
|
settings: |
|
webhook: |
|
from_secret: SLACK_WEBHOOK |
|
link_names: true |
|
template: > |
|
{{#if build.pull }} |
|
*Build started*: {{ repo.owner }}/{{ repo.name }} - <https://git.webhosting.rug.nl/{{ repo.owner }}/{{ repo.name }}/pull/{{ build.pull }}|Pull Request #{{ build.pull }}> |
|
{{else}} |
|
*Build started: {{ repo.owner }}/{{ repo.name }} - Build #{{ build.number }}* (type: `{{ build.event }}`) |
|
{{/if}} |
|
Commit: <https://git.webhosting.rug.nl/{{ repo.owner }}/{{ repo.name }}/commit/{{ build.commit }}|{{ truncate build.commit 8 }}> |
|
Branch: <https://git.webhosting.rug.nl/{{ repo.owner }}/{{ repo.name }}/commits/{{ build.branch }}|{{ build.branch }}> |
|
Author: <https://git.webhosting.rug.nl/{{ build.author }}|{{ build.author }}> |
|
<{{ build.link }}|Visit build page ↗> |
|
|
|
--- |
|
kind: pipeline |
|
name: build-docker-image |
|
type: kubernetes |
|
|
|
steps: |
|
- name: frontend |
|
image: plugins/docker |
|
settings: |
|
cache_from: |
|
- ${DRONE_REPO,,}:${DRONE_SOURCE_BRANCH/\//-} |
|
username: |
|
from_secret: HARBOR_USER |
|
password: |
|
from_secret: HARBOR_PASSWORD |
|
repo: registry.webhosting.rug.nl/${DRONE_REPO,,} |
|
registry: registry.webhosting.rug.nl |
|
dockerfile: docker/Dockerfile |
|
# During building the images, we use an internal RUG caching server for getting the raw docker images |
|
# Without this, we will hit a rate limit of Docker. This only works on the RUG Drones building setup |
|
# And we need to setup the correct API_URL and API_HTTPS=true by default |
|
build_args: |
|
- DOCKER_CACHE=registry.webhosting.rug.nl/cache/library/ |
|
- API_URL=https://workspaces.research.rug.nl/ |
|
- API_HTTPS=true |
|
tags: |
|
- ${DRONE_SOURCE_BRANCH/\//-} |
|
- ${DRONE_SOURCE_BRANCH/\//-}-${DRONE_COMMIT_SHA:0:8} |
|
when: |
|
event: |
|
exclude: |
|
- tag |
|
|
|
|
|
--- |
|
kind: pipeline |
|
name: rancher-deployment |
|
type: kubernetes |
|
|
|
clone: |
|
disable: true |
|
|
|
steps: |
|
- name: frontend |
|
image: registry.webhosting.rug.nl/cache/ystyle/drone-plugin-rancher2 |
|
commands: # This is a custom hack to get a readable build date in the environment variables |
|
- PLUGIN_DATA=$${PLUGIN_DATA\/\[BUILD_DATE\]\/$$(date +'UTC_%Y-%m-%dT%H-%M-%S')} /bin/drone-plugin |
|
settings: |
|
api: https://k8s.rug.nl/v3/project/c-gxr59:p-hwc8c/workloads/deployment:vre:frontend |
|
access_key: |
|
from_secret: RANCHER_USER |
|
secret_key: |
|
from_secret: RANCHER_PASSWORD |
|
data: |
|
[ |
|
{ |
|
"name": "frontend", |
|
"image": "registry.webhosting.rug.nl/${DRONE_REPO,,}:${DRONE_SOURCE_BRANCH/\\//-}", |
|
"environment": |
|
{ |
|
"BUILD_TAG": "${DRONE_COMMIT_SHA:0:8}", |
|
"BUILD_DATE": "[BUILD_DATE]", |
|
}, |
|
}, |
|
] |
|
|
|
|
|
depends_on: |
|
- build-docker-image |
|
|
|
|
|
--- |
|
kind: pipeline |
|
name: notify-pipeline-end |
|
type: kubernetes |
|
|
|
clone: |
|
disable: true |
|
|
|
steps: |
|
- name: slack |
|
image: plugins/slack |
|
settings: |
|
webhook: |
|
from_secret: SLACK_WEBHOOK |
|
link_names: true |
|
template: > |
|
{{#if build.pull }} |
|
*{{#success build.status}}✔{{ else }}✘{{/success}} {{ uppercasefirst build.status }}*: {{ repo.owner }}/{{ repo.name }} - <https://git.webhosting.rug.nl/{{ repo.owner }}/{{ repo.name }}/pull/{{ build.pull }}|Pull Request #{{ build.pull }}> |
|
{{else}} |
|
*{{#success build.status}}✔{{ else }}✘{{/success}} {{ uppercasefirst build.status }}: {{ repo.owner }}/{{ repo.name }} - Build #{{ build.number }}* (type: `{{ build.event }}`) |
|
{{/if}} |
|
Commit: <https://git.webhosting.rug.nl/{{ repo.owner }}/{{ repo.name }}/commit/{{ build.commit }}|{{ truncate build.commit 8 }}> |
|
Branch: <https://git.webhosting.rug.nl/{{ repo.owner }}/{{ repo.name }}/commits/{{ build.branch }}|{{ build.branch }}> |
|
Author: <https://git.webhosting.rug.nl/{{ build.author }}|{{ build.author }}> |
|
Duration: {{ since build.created }} |
|
<{{ build.link }}|Visit build page ↗> |
|
|
|
depends_on: |
|
- build-docker-image |
|
- rancher-deployment |
|
|
|
trigger: |
|
status: |
|
- success |
|
- failure
|
|
|