-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from telekom-mms/issue_82
Issue 82
- Loading branch information
Showing
7 changed files
with
238 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# [gitlab-ci](pipeline/gitlab-ci.yml) | ||
|
||
## Inputs | ||
|
||
| variable | description | default | | ||
| --- | --- | --- | | ||
| GITHUB_DMC_TAG | version of the dmc release | latest version | | ||
| DMC_NAME | name of the container | dmc | | ||
| DMC_IMAGE | full image name | `$CI_REGISTRY_IMAGE/${DMC_NAME}` | | ||
|
||
The preset needs a `.docker-login`-extend. In it you have to define your docker registry information. | ||
To include the preset see [gitlab-ci](examples/pipeline/gitlab-ci.yml) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Base | ||
|
||
Basic Setup of the DMC. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Image | ||
|
||
The DMC uses the wakemeops image as base image. | ||
|
||
## Image ARG | ||
|
||
* `distribution` | ||
* Required: no | ||
* Default: `ubuntu` | ||
* Description: distribution that should be used, see also [wakemeops](https://hub.docker.com/u/wakemeops) | ||
* Examples: | ||
|
||
* ``` yaml | ||
distribution: debian | ||
``` | ||
* `version` | ||
* Required: no | ||
* Default: `latest` | ||
* Description: specific version | ||
* Examples: | ||
|
||
* ``` yaml | ||
version: buster | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Post Build Config | ||
|
||
System configuration and further setups to finish the DMC build. | ||
|
||
## Post Build Config ARG | ||
|
||
* `profiles` | ||
* Required: no | ||
* Default: | ||
* Description: configuration for profile settings | ||
* Examples: | ||
|
||
* ``` yaml | ||
profiles: | ||
.vimrc: | ||
- filetype on | ||
.bash_aliases: | ||
- alias ll='ls -la' | ||
``` | ||
* `post_build_commands` | ||
* Required: no | ||
* Default: | ||
* Description: commands to run after the image build to finish the setup | ||
* Examples: | ||
|
||
* ``` yaml | ||
post_build_commands: | ||
- awsume-configure | ||
``` |
Oops, something went wrong.