Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Gitlab CI + Docker (LinuxDays 2018)
Search
Ondrej Sika
October 06, 2018
Programming
270
2
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Gitlab CI + Docker (LinuxDays 2018)
https://ondrej-sika.cz/blog/2018/gitlab-ci-docker-linuxdays/
Ondrej Sika
October 06, 2018
More Decks by Ondrej Sika
See All by Ondrej Sika
ZEIT, Serverless Deployments
ondrejsika
0
100
Introduction to Docker & Kubernetes @ JavaDays 2019
ondrejsika
1
330
Terraform - Infrastructure as a Code
ondrejsika
1
290
TechEd 2018, Introduction to Docker
ondrejsika
0
580
Automation using Gitlab CI and Docker, DevHeaven 2018
ondrejsika
0
220
Lightning Network aneb Bitcoin 2.0, Plzensky Barcamp, 7.4.2018
ondrejsika
0
120
Python Libraries for Bitcoin and Ethereum, PyCon SK 2018
ondrejsika
1
170
i3 tiling window manager, Install Fest 2018
ondrejsika
1
360
Docker, Zlin, 8. 2. 2018
ondrejsika
0
150
Other Decks in Programming
See All in Programming
「なぜそう決めたのか」を残し続ける仕組み ― Notion AI カスタムエージェント × Slack連携による設計判断の自動記録 - NIKKEI Tech Talk #47
niftycorp
PRO
0
260
なぜ型を書くのか? TSKaigi2026で改めて考える #tskaigi_smarthr
kajitack
0
340
Creating Composable Callables in Contemporary C++
rollbear
0
200
その問い、本当に正しいですか?AI時代のエンジニアに必要な哲学と認知科学 / ai-philosophy-cognitive-science
minodriven
14
6.8k
JAWS-UG横浜 #102 AWSサ終供養LT会 成仏できない AWS サービスたち 〜本日、三体供養します〜
maroon1st
0
120
Prismを使った型安全な暗号化_関数型まつり2026
_fhhmm
0
100
はてなアカウント基盤 State of the Union
cockscomb
1
1.3k
광주소프트웨어마이스터고등학교 DevFest 특강 - 바이브 코딩 시대에서 주니어 개발자로 살아남는 방법
utilforever
1
110
Haskell/Servantを通してWebミドルウェアを捉え直す
pizzacat83
1
480
これからAgentCoreを触る方へトレンドはGatewayです
har1101
6
480
霧の中の代数的エフェクト
funnyycat
1
350
1年で人数1.5倍、PR数5.5倍増。 品質とアウトカムはどうなったか、 何が効いたか
ike002jp
0
120
Featured
See All Featured
Rails Girls Zürich Keynote
gr2m
96
14k
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
2.1k
Stop Working from a Prison Cell
hatefulcrawdad
274
21k
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
Technical Leadership for Architectural Decision Making
baasie
3
440
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
1
350
Keith and Marios Guide to Fast Websites
keithpitt
413
23k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
How to Talk to Developers About Accessibility
jct
2
340
WENDY [Excerpt]
tessaabrams
11
38k
Making the Leap to Tech Lead
cromwellryan
135
10k
Transcript
Ondrej Sika
[email protected]
@ondrejsika Linux Days 2018, Prague, 6. 10.
2018 Gitlab CI + Docker
https://sika.link/linuxdays2018
Goals - Build application - Run tests - Deploy to
staging env.
None
What is CI?
What is CI? In software engineering, continuous integration is the
practice of merging all developer working copies to a shared mainline several times a day.
Usage of CI Automatization of - build process - testing
- deployment - dev - staging - production - code quality - Linting - Formating
Gitlab CI
Gitlab CI Architecture
Gitlab CI Runner GitLab Runner is the tool that is
used to run your jobs and send the results back to GitLab.
Gitlab CI Runner
Gitlab CI Runner Run on: - Linux - Docker -
Windows How to install & configure: - https://docs.gitlab.com/runner/install/ - https://docs.gitlab.com/runner/register/ - https://github.com/ondrejsika/gitlab-ci-runner
Install Gitlab Runner - Linux sudo wget -O /usr/local/bin/gitlab-runner https://gitlab-runner-downloads.s3.amazonaws.com/latest/b
inaries/gitlab-runner-linux-amd64 sudo chmod +x /usr/local/bin/gitlab-runner sudo useradd --comment 'GitLab Runner' --create-home gitlab-runner --shell /bin/bash sudo gitlab-runner install --user=gitlab-runner --working-directory=/home/gitlab-runner sudo gitlab-runner start
Register Gitlab Runner - Linux sudo gitlab-runner register # or
gitlab-runner register --non-interactive \ --url $GITLABCI_URL \ --registration-token $GITLABCI_TOKEN
Install Gitlab Runner - Docker docker run -d \ --name
gitlab-runner \ --restart always \ -v /var/run/docker.sock:/var/run/docker.sock \ -v /builds:/builds \ gitlab/gitlab-runner:latest
Register Gitlab Runner - Docker docker exec -ti gitlab-runner gitlab-runner
register \ --non-interactive \ --url $GITLABCI_URL \ --registration-token $GITLABCI_TOKEN \ --name $(hostname) \ --executor docker \ --docker-image docker:git \ --docker-volumes '/var/run/docker.sock:/var/run/docker.sock' \ --docker-volumes '/builds:/builds'
https://github.com/ondrejsika/gitlab-ci-runner
Done, check out your Gitlab
First Job
First job git clone
[email protected]
:test/test.git cd test vim .gitlab-ci.yml git
add . git commit -m "Add CI script" git push origin master # .gitlab-ci.yml job: script: echo Hello World!
.gitlab-ci.yml
https://docs.gitlab.com/ce/ci/
Jobs - script - when - stages - only &
except - before_job & after_job - retry
Script test1_job: script: echo 'Run test1 ...' test2_job: script: -
echo Run 'test2.1 ...' - echo Run 'test2.2 ...' - echo Run 'test2.3 ...'
Stages stages: - build - test - deploy build_job: stage:
build script: echo 'Building ...' test1_job: stage: test script: echo Run test1 ...' test2_job: stage: test script: echo Run test2 ...'
When cleanup_build_job: script: echo Cleanup build when failed ... when:
on_failure test_job: script: echo Run test ... deploy_job: script: echo Deploy ... when: manual cleanup_job: script: echo Full cleanup ... when: always
Only & Except job: # use regexp only: - /^issue-.*$/
# use special keyword except: - branches
Variables - Secret variables are defined in Gitlab - Some
variables set CI runtime - Public variables are defined in .gitlab-ci.yml
Variables CI CI_PROJECT_NAME, CI_PROJECT_PATH_SLUG CI_COMMIT_REF_NAME, CI_COMMIT_REF_SLUG CI_COMMIT_SHA, CI_COMMIT_TAG CI_PIPELINE_ID, CI_JOB_ID
CI_REGISTRY, CI_REGISTRY_USER, CI_REGISTRY_PASSWORD ... https://docs.gitlab.com/ce/ci/variables/README.html
Variables variables: IMAGE_TAG: myapp:$CI_PIPELINE_ID job: script: docker build -t $IMAGE_TAG
.
Docker - Fully supported - Easiest way how to create
build environment - Easiest way how to run and distribute your software
Docker Environment image: ondrejsika/ci job: image: ondrejsika/ci-go script: go build
server.go
Docker job: script: - docker build -t $IMAGE . -
docker push $IMAGE
Environments Environment is used to define that a job deploys
to a specific environment. If environment is specified and no environment under that name exists, a new one will be created automatically.
Environment deploy: script: echo 'Deploy!' environment: name: $CI_COMMIT_REF_SLUG url: https://$CI_COMMIT_REF_SLUG.example.com
Deployments - Automatic - Manual
Auto vs Manual Deployments auto_deploy_job: script: echo Auto Deploy! environment:
name: deployment-$CI_PIPELINE_ID manual_deploy_job: when: manual script: echo Manual Deploy! environment: name: deployment-$CI_PIPELINE_ID
Stop Deployment deploy_job: stage: deploy script: echo Deploy! environment: name:
deployment-$CI_PIPELINE_ID on_stop: stop_deploy_job stop_deploy_job: stage: deploy script: echo Stop! when: manual environment: name: deployment-$CI_PIPELINE_ID action: stop
Try it!
https://github.com/ondrejsika/linuxdays2018
https://gitlab-demo.xsika.cz/demo/linuxdays2018
Resources - https://about.gitlab.com/features/gitlab-ci-cd/ - https://docs.gitlab.com/ce/ci/ - https://docs.gitlab.com/ce/ci/yaml/ - https://docs.gitlab.com/ce/ci/quick_start/ -
https://ondrej-sika.cz/blog/2018/gitlab-ci-docker-linuxdays/ - https://github.com/ondrejsika/ondrejsika-ci-docker - https://github.com/ondrejsika/traefik-ssl - https://github.com/ondrejsika/gitlab-ci-runner
Thank you & Questions Ondrej Sika email:
[email protected]
web: https://ondrej-sika.cz
twitter: @ondrejsika linkedin: /in/ondrejsika/ https://sika.link/linuxdays2018