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
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
ohr486
November 09, 2019
Programming
0
260
ex-app-on-k8s
ohr486
November 09, 2019
Tweet
Share
More Decks by ohr486
See All by ohr486
負荷試験Night#1 負荷試験2023年トレンド
ohr486
17
4.8k
Elixir/PhoenixによるWeb開発の現場から
ohr486
1
610
Hacking Phoenix Performance
ohr486
1
380
Plug & WAF
ohr486
2
540
elixirをプロダクションに導入する
ohr486
1
710
IEx maniacs
ohr486
4
640
Hack and Read Elixir
ohr486
2
790
Running App on AppRunner
ohr486
0
840
sponsor-talk-drecom-heisei-ruby-kaigi
ohr486
0
880
Other Decks in Programming
See All in Programming
朝日新聞のデジタル版を支えるGoバックエンド ー価値ある情報をいち早く確実にお届けするために
junkiishida
1
250
nilとは何か 〜interfaceの構造とnil!=nilから理解する〜 / Understanding nil in Go Interface Representation and Why nil != nil
kuro_kurorrr
2
1.2k
Claude Codeと2つの巻き戻し戦略 / Two Rewind Strategies with Claude Code
fruitriin
0
190
kintone + ローカルLLM = ?
akit37
0
120
CSC307 Lecture 09
javiergs
PRO
1
850
CSC307 Lecture 13
javiergs
PRO
0
310
文字コードの話
qnighy
41
15k
猫の手も借りたい!ので AIエージェント猫を作って社内に放した話 Claude Code × Container Lambda の Slack Bot "DevNeko"
naramomi7
0
210
日本だけで解禁されているアプリ起動の方法
ryunakayama
0
360
要求定義・仕様記述・設計・検証の手引き - 理論から学ぶ明確で統一された成果物定義
orgachem
PRO
1
400
Ruby x Terminal
a_matsuda
4
300
AIプロダクト時代のQAエンジニアに求められること
imtnd
1
480
Featured
See All Featured
Building the Perfect Custom Keyboard
takai
2
700
How to Get Subject Matter Experts Bought In and Actively Contributing to SEO & PR Initiatives.
livdayseo
0
75
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
133
19k
Primal Persuasion: How to Engage the Brain for Learning That Lasts
tmiket
0
270
Exploring anti-patterns in Rails
aemeredith
2
280
The Organizational Zoo: Understanding Human Behavior Agility Through Metaphoric Constructive Conversations (based on the works of Arthur Shelley, Ph.D)
kimpetersen
PRO
0
250
The Illustrated Children's Guide to Kubernetes
chrisshort
51
52k
Paper Plane
katiecoart
PRO
0
47k
Building Applications with DynamoDB
mza
96
6.9k
We Have a Design System, Now What?
morganepeng
55
8k
Docker and Python
trallard
47
3.7k
The Limits of Empathy - UXLibs8
cassininazir
1
230
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の管理も不要になるのでとても 管理が楽になります