Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Platone DSO Technical Platform
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACS
Public
Project Deliverables
Platone
Platone DSO Technical Platform
Merge requests
!1
add power-calc and balancing to dsotp
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add power-calc and balancing to dsotp
dsotp-v2
into
master
Overview
0
Commits
2
Pipelines
0
Changes
44
Merged
Florian Oppermann
requested to merge
dsotp-v2
into
master
2 years ago
Overview
0
Commits
2
Pipelines
0
Changes
44
Expand
Changes for v2
0
0
Merge request reports
Compare
master
version 1
055d9a77
2 years ago
master (base)
and
latest version
latest version
216b78e0
2 commits,
1 year ago
version 1
055d9a77
1 commit,
2 years ago
44 files
+
3692
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
44
Search (e.g. *.vue) (Ctrl+P)
balancing-deployment/.gitlab-ci.yml
0 → 100644
+
32
−
0
Options
variables
:
GIT_STRATEGY
:
fetch
stages
:
-
prepare
-
build
-
deploy
# Prepare stage
################################################################################
clone:servicerepo
:
stage
:
prepare
script
:
-
git clone git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@git-ce.rwth-aachen.de/acs/private/research/platone/wp5/balancing-module/balancing-service.git
# Build Image stage
################################################################################
build:image
:
stage
:
build
image
:
name
:
gcr.io/kaniko-project/executor:debug
entrypoint
:
[
"
"
]
script
:
-
mkdir -p /kaniko/.docker
-
echo "{\"auths\":{\"${CI_REGISTRY}\":{\"username\":\"${CI_REGISTRY_USER}\",\"password\":\"${CI_REGISTRY_PASSWORD}\"}}}" > /kaniko/.docker/config.json
-
/kaniko/executor
--context ${CI_PROJECT_DIR}
--dockerfile ${CI_PROJECT_DIR}/balancing-service/Service/Dockerfile
--destination ${CI_REGISTRY_IMAGE}:latest
Loading