BotDiscord/cicd/values.yaml
2024-06-28 01:12:45 +02:00

25 lines
843 B
YAML

config:
prefix: botdiscord
name: batleforc
ingress:
class: haproxy
domain: webhook.weebo.fr
registry:
imageName: batleforc/botdiscord
sonarqube:
enabled: false
host: https://qube.weebo.fr
image: harbor.weebo.fr/sonar/rust:v1.17.12
useToken: false
additionalScript:
enabled: false
image: harbor.weebo.fr/sonar/rust:v1.17.12-prepare
script: |
set -x
git config --global --add safe.directory /workspace/source
git fetch --unshallow
cargo clippy --message-format=json > clippy-report.json
cargo audit --json > audit-report.json
cargo outdated --depth 1 --format json > outdated-report.json
cargo sonar --clippy --clippy-path clippy-report.json --audit --audit-path audit-report.json --outdated --outdated-path outdated-report.json