Initialisation depot

This commit is contained in:
Serge NOEL
2026-02-10 12:12:11 +01:00
commit c3176e8d79
818 changed files with 52573 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
// .drone.jsonnet - Main pipeline configuration entry point
// This file imports the actual configuration from the pipeline folder
local buildSteps = import 'pipeline/build-steps.libsonnet';
local commonConfig = import 'pipeline/common.libsonnet';
{
kind: "pipeline",
type: "kubernetes",
name: "auth-service-build",
service_account: "drone-runner",
clone: { disable: true },
environment: commonConfig.environment,
steps: [
commonConfig.cloneStep,
commonConfig.versionStep,
commonConfig.testStep,
buildSteps.externalBuildahStep,
buildSteps.pushDockerStep,
buildSteps.scaleDownStep
],
trigger: commonConfig.trigger
}