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
ex-app-on-k8s
Search
ohr486
November 09, 2019
Programming
0
220
ex-app-on-k8s
ohr486
November 09, 2019
Tweet
Share
More Decks by ohr486
See All by ohr486
負荷試験Night#1 負荷試験2023年トレンド
ohr486
17
4.7k
Elixir/PhoenixによるWeb開発の現場から
ohr486
1
460
Hacking Phoenix Performance
ohr486
1
320
Plug & WAF
ohr486
2
470
elixirをプロダクションに導入する
ohr486
1
620
IEx maniacs
ohr486
4
570
Hack and Read Elixir
ohr486
2
700
Running App on AppRunner
ohr486
0
750
sponsor-talk-drecom-heisei-ruby-kaigi
ohr486
0
810
Other Decks in Programming
See All in Programming
エンジニアが挑む、限界までの越境
nealle
1
150
生成AIを使ったQAアプリケーションの作成 - ハンズオン補足資料
oracle4engineer
PRO
3
220
Optimizing JRuby 10
headius
0
310
On-the-fly Suggestions of Rewriting Method Deprecations
ohbarye
1
1.9k
リアクティブシステムの変遷から理解するalien-signals / Learning alien-signals from the evolution of reactive systems
yamanoku
3
1.2k
Building a macOS screen saver with Kotlin (Android Makers 2025)
zsmb
1
150
RubyKaigi Dev Meeting 2025
tenderlove
1
130
Sharing features among Android applications: experience feedback
jbvincey
0
110
スモールスタートで始めるためのLambda×モノリス(Lambdalith)
akihisaikeda
2
280
[NG India] Event-Based State Management with NgRx SignalStore
markostanimirovic
1
150
Boost Your Performance and Developer Productivity with Jakarta EE 11
ivargrimstad
0
1.6k
AWS で実現する安全な AI エージェントの作り方 〜 Bedrock Engineer の実装例を添えて 〜 / how-to-build-secure-ai-agents
gawa
8
800
Featured
See All Featured
Done Done
chrislema
183
16k
Product Roadmaps are Hard
iamctodd
PRO
52
11k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
13
670
Making Projects Easy
brettharned
116
6.1k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.2k
Reflections from 52 weeks, 52 projects
jeffersonlam
349
20k
Designing Experiences People Love
moore
141
24k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
5
520
Why Our Code Smells
bkeepers
PRO
336
57k
The Power of CSS Pseudo Elements
geoffreycrofte
75
5.8k
Transcript
Elixir app on k8s 2019/11/09 週1ゆるもく会 @ohrdev
agenda • about me • target • goal • elixir
• kubernetes(k8s) • our tools for service/deployment • our service architecture • our deployment diagram • release build for elixir • conclusion
about me • Tsunenori Ohara/おーはら ◦ Twitter: @ohrdev ◦ Github:
ohr486 • Work ◦ Drecom ◦ SRE/Infra/Ruby,Elixir,Lisp,etc • Community ◦ tokyo.ex, ElixirConfJapan, Erlang&ElixirFest オーガナイザー ◦ Japan Elixir Association ◦ meguro.rb, meguro.es • Hobby ◦ 仏像制作, 丸太収集, 写経, 寺社仏閣 ◦ 人工衛星/アマチュア無線
target • アプリの実行環境をサーバーからコンテナに変更したい人 • k8s環境へのアプリのデプロイ方法を知りたい人 • (k8sちょっと興味がある勢) • (elixirちょっと興味ある勢)
goal • elixirアプリを例に、以下の内容がわかる • k8s環境へアプリをdeployする方法 • deployの為に必要なツール • k8s上で動くサービスのインフラ/アーキテクチャ/構成
elixir • ErlangVM上で動作 • 関数型言語 • モダンな開発環境/ツール • 並行プログラミング ◦
Actor Model • 軽量プロセス ◦ OSのプロセスとは異なる ◦ 超軽量 • OTP(Open Telecom Platform) ◦ 並行プログラミングのパターン /FW
7 Erlang VM Architecture Linux Server Erlang VM CPU CPU
CPU CPU CPU CPU コア数と同数のスケジューラー erlang process != OS process VMがスケジューラー間のプロセスを分 散/マイグレーション スケジューラー プロセス
8 Erlang PROCESS Architecture Erlang VM application controller application master
application プロセス ・elixir, iex, mix, etc ・user apps ・lib apps
kubernetes(k8s) • コンテナのオペレーションを自動化するプラットフォーム ◦ アプリの自動デプロイ ◦ スケーリング ◦ アプリ・コンテナ運用 •
OSS • 自前運用も可能だが、マネージドなクラウドサービスを使うのが一般的 ◦ GCP : GKE <= よく使われている、事例があがるやつ ◦ AWS: EKS <= 今日のターゲット ◦ Azure: AKS
our tools for service/deployment • インフラ ◦ EKS(Elastic Kubernetes Service)
▪ AWSのマネージドなk8sサービス ◦ ECR(Elastic Container Registry) ▪ AWSのDockerコンテナのレジストリサービス ◦ ALB(Application Load Balancer) ▪ AWSのロードバランサー ◦ EC2(Elastic Compute Cloud) ▪ AWSのマネージドな仮想サーバー • CI/CD ◦ CircleCI ◦ GitHub ◦ Chatwork
EKS cluster worker node群 our service architecture ALB service pod
elixir app container ECR AutoScalingGroup EC2 Instance EC2 Instance EC2 Instance end user developer CD tools kubectl git push configmap deployment … etc
CircleCI workflow our deployment diagram test lint release build aws
auth docker push kubectl apply docker build 言語による違 いはここ push message 各種通知 webhooks start CI/CD deploy/更新 はk8sが実行 v1.1の imageを pull tag: v1.1 v1.1の imageを 適用
release build for elixir • elixirはコンパイル言語 • elixirのリリースアーカイブ作成機能 ◦ 言語ランタイムも一緒にアーカイブしてくれる
◦ つまり、同じOS/アーキテクチャのサーバーであれば、ファイルを copyするだけで実行可能 ▪ つまり、実行環境にelixirをインストールしなくても良い ◦ dockerで動かす場合は、docker buildでイメージにランタイム毎焼けば良い • workflow ◦ strep0. mix deps.get ◦ step1. MIX_ENV=prod mix compile ◦ step2. MIX_ENV=prod mix release ◦ step3. cp _build/prod/<app> /path/to/app <= /path/to/app を含めてdocker buildすれば良い ◦ step4. /path/to/bin/<app> start
conclusion • k8s環境へのdeploymentの事例を紹介しました • 言語によらずほぼしくみは同じだと思います ◦ つまりRailsだろうがGolangだろうが同じ仕組みで適用可能だと思います • k8sを利用する事でdeploymentオペレーションをシンプルにできます •
クラウドが提供するマネージドk8sを利用するとk8sの管理も不要になるのでとても 管理が楽になります