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
450
Hacking Phoenix Performance
ohr486
1
320
Plug & WAF
ohr486
2
470
elixirをプロダクションに導入する
ohr486
1
610
IEx maniacs
ohr486
4
570
Hack and Read Elixir
ohr486
2
700
Running App on AppRunner
ohr486
0
740
sponsor-talk-drecom-heisei-ruby-kaigi
ohr486
0
810
Other Decks in Programming
See All in Programming
アプリを起動せずにアプリを開発して品質と生産性を上げる
ishkawa
0
280
2025/3/18 サービスの成長で生じる幅広いパフォーマンスの問題を、 AIで手軽に解決する
shirahama_x
0
160
Kubernetesで実現できるPlatform Engineering の現在地
nwiizo
2
1.7k
JavaOne 2025: Advancing Java Profiling
jbachorik
1
310
RailsでCQRS/ESをやってみたきづき
suzukimar
2
1.5k
ミリしらMCP勉強会
watany
2
330
Devin入門と最近のアップデートから見るDevinの進化 / Introduction to Devin and the Evolution of Devin as Seen in Recent Update
rkaga
7
3.8k
AIエージェントを活用したアプリ開発手法の模索
kumamotone
1
750
OUPC2024 Day 1 解説
kowerkoint
0
400
Go1.24で testing.B.Loopが爆誕
kuro_kurorrr
0
160
List とは何か? / PHPerKaigi 2025
meihei3
0
550
AI Agentを利用したAndroid開発について
yuchan2215
0
210
Featured
See All Featured
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
Speed Design
sergeychernyshev
28
860
Side Projects
sachag
452
42k
Designing for Performance
lara
606
69k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.4k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
28
2k
Unsuck your backbone
ammeep
670
57k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
12k
BBQ
matthewcrist
88
9.5k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.5k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.1k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
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の管理も不要になるのでとても 管理が楽になります