0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Fly.io の「Hands-on」のページに従ってデプロイの練習をやってみた

Last updated at Posted at 2024-05-26

前提

  • Fly.ioのページについては、2024年5月26日時点の構成で説明しています。
  • 検証環境
    • MacBook Pro(Intel)
      • macOS Sonoma 14.5
    • Dell Latitude 3420
      • Ubuntu 22.04.4 LTS

Fly.ioのページにアクセスし、画面上部メニューのから「Docs」をクリックします。

スクリーンショット 2024-05-26 12.55.28.png


画面左側のメニューから「Getting started」をクリックします。

スクリーンショット 2024-05-26 13.01.26.png


「Getting started」のページを参照すると、「Launch on Fly.io」、「Hands-on」の順に進めるようなので、まずは「Launch on Fly.io」をクリックします。

スクリーンショット 2024-05-26 13.08.41.png

Launch on Fly.io」のページは、画面左側のメニューからも遷移できるようになっています。

スクリーンショット 2024-05-26 13.14.43.png


「Launch on Fly.io」のページを参照すると、まず、flyctlコマンドを実行環境にインストールし、Fly.ioのアカウント作成(またはログイン)を行い、アプリケーションの作成と構築、そして、デプロイという手順で進めるようです。

スクリーンショット 2024-05-26 13.17.59.png


flyctlコマンドをインストールするため、「Install flyctl」をクリックします。

スクリーンショット 2024-05-26 14.48.30.png

Install flyctl」のページは、画面左側のメニューからも遷移できるようになっています。

スクリーンショット 2024-05-26 14.47.30.png

「Install flyctl」のページには各環境ごとにインストール手順が記述されていますので、お手元の環境に合わせて実行します。

スクリーンショット 2024-05-26 13.36.02.png


Mac環境

flyctl コマンドをインストールします。

% brew install flyctl

flyctl コマンドのバージョンを確認します。

% flyctl version  
flyctl v0.2.55 darwin/amd64 Commit: 0a7df8d78123d5809167cdaa11a78dec92a87e47 BuildDate: 2024-05-16T17:23:50Z

Ubuntu環境

flyctl コマンドをインストールします。

$ curl -L https://fly.io/install.sh | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  1735    0  1735    0     0   7517      0 --:--:-- --:--:-- --:--:--  7543
######################################################################## 100.0%
set update channel to shell
flyctl was installed successfully to /home/akase244/.fly/bin/flyctl
Manually add the directory to your $HOME/.bash_profile (or similar)
  export FLYCTL_INSTALL="/home/akase244/.fly"
  export PATH="$FLYCTL_INSTALL/bin:$PATH"
Run '/home/akase244/.fly/bin/flyctl --help' to get started

以下の2行を .bash_profile (または準ずるファイル)に追記します。

$ tail -2 ~/.bashrc 
export FLYCTL_INSTALL="/home/akase244/.fly"
export PATH="$FLYCTL_INSTALL/bin:$PATH"

flyctl コマンドのバージョンを確認します。

$ flyctl version
flyctl v0.2.59 linux/amd64 Commit: 76e31c66ca2982cb2e919f5bc34bb521451690a2 BuildDate: 2024-05-24T23:13:23Z

画面左側のメニューから「Sign up / Sign in」をクリックします。

スクリーンショット 2024-05-26 13.53.24.png


Fly.ioのアカウント登録はメールアドレス、Googleアカウント、GitHubアカウントのいずれかを選択できるようです。

スクリーンショット 2024-05-26 13.55.18.png


fly auth signup コマンドを実行すると、以下のような表示になり、ブラウザが起動して「Sign up」画面が表示されます。

Opening 
https://fly.io/app/auth/cli/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ...

Waiting for session...⣯

スクリーンショット 2024-05-26 13.59.56.png

すべての入力が終えたら、「Create My Account」ボタンをクリックします。

スクリーンショット 2024-05-26 14.03.57.png

ターミナル上の表示が以下のように切り替わります。

% fly auth signup
Opening 
https://fly.io/app/auth/cli/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ...

Waiting for session... Done
successfully logged in as ログインアカウント

ブラウザ側もアカウント登録が成功した旨の表示に切り替わります。

スクリーンショット 2024-05-26 14.06.00.png


メールアカウントによるアカウント登録を行った場合は、この時点で「Activate your Fly.io account」という件名でメールが届いているので認証処理を行います。
※Googleアカウント、GitHubアカウントの場合も同様の流れになるかは検証していません。

スクリーンショット 2024-05-26 14.28.28.png


先程は、 fly auth signup の流れでログインまで完了したので、今度は fly auth login でログインしてみます。

アカウント登録時に利用していたターミナルを継続して利用する場合は、一旦ログアウトを行います。

% fly auth logout

fly auth login コマンドを実行すると、以下のような表示になり、ブラウザが起動して「Sign in」画面が表示されます。

% fly auth login
Opening https://fly.io/app/auth/cli/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ...

Waiting for session...⣷

スクリーンショット 2024-05-26 14.20.23.png

入力を終えたら、「Sign In」ボタンをクリックします。

スクリーンショット 2024-05-26 14.23.24.png

ターミナル上の表示が以下のように切り替わります。

% fly auth login
Opening https://fly.io/app/auth/cli/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ...

Waiting for session... Done
successfully logged in as ログインアカウント

ブラウザ側もログインが成功した旨の表示に切り替わります。

スクリーンショット 2024-05-26 14.25.55.png


画面左側のメニューから「Launch app」をクリックします。

スクリーンショット 2024-05-26 14.54.44.png


デモ用に準備されたDockerイメージを利用してアプリを作成します。

デフォルト設定のままでよいので「y」と入力しエンターを押下します。

% fly launch --image flyio/hellofly:latest
Using image flyio/hellofly:latest
Creating app in /Users/akase244/repo/akase244_hellofly
We're about to launch your app on Fly.io. Here's what you're getting:

Organization: akase244               (fly launch defaults to the personal org)
Name:         akase244-hellofly      (derived from your directory name)
Region:       Tokyo, Japan           (this is the fastest region for you)
App Machines: shared-cpu-1x, 1GB RAM (most apps need about 1GB of RAM)
Postgres:     <none>                 (not requested)
Redis:        <none>                 (not requested)
Sentry:       false                  (not requested)

? Do you want to tweak these settings before proceeding? (y/N) y

以下の表示に切り替わり、ブラウザが起動します。

? Do you want to tweak these settings before proceeding? Yes
Opening https://fly.io/cli/launch/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ...

Waiting for launch data...⣻

アプリ名を入力し、必要なスペックを選択します。

スクリーンショット 2024-05-26 15.08.17.png
スクリーンショット 2024-05-26 15.08.48.png


この画面が表示されたらブラウザは閉じて構いません。

スクリーンショット 2024-05-26 15.09.55.png


ターミナルの表示がこのように切り替わるので「y」と入力しエンターを押下します。

Waiting for launch data... Done
Warning: This organization has no payment method, turning off high availability
Created app 'akase244-hellofly' in organization 'personal'
Admin URL: https://fly.io/apps/akase244-hellofly
Hostname: akase244-hellofly.fly.dev
? Create .dockerignore from 4 .gitignore files? (y/N) y

クレジットカード登録が未完了なため、以下のようにエラーが発生します。

? Create .dockerignore from 4 .gitignore files? Yes
Created /Users/akase244/repo/.dockerignore from 4 .gitignore files.
Wrote config file fly.toml
Validating /Users/akase244/repo/fly.toml
✓ Configuration is valid
==> Building image
Searching for image 'flyio/hellofly:latest' remotely...
image found: img_XXXXXXXXXXXXXXXX

Watch your deployment at https://fly.io/apps/akase244-hellofly/monitoring

Provisioning ips for akase244-hellofly
  Dedicated ipv6: XXXX:XXXX:X::XX:XXXX:X
  Shared ipv4: XXX.XXX.XXX.XXX
  Add a dedicated ipv4 with: fly ips allocate-v4

Error: input:3: createRelease We need your payment information to continue! Add a credit card or buy credit: https://fly.io/dashboard/akase244/billing

ブラウザでFly.ioのッシュボード画面に遷移します。

スクリーンショット 2024-05-26 15.20.37.png


画面左側のメニューから「Billing」をクリックします。

スクリーンショット 2024-05-26 15.19.49.png


「Account Status」に「Requires a credit card」と表示されていますので、「Add credit card」をクリックします。

スクリーンショット_2024-05-26_15_21_46.png


今回は「Hobby Plan」を申し込むので、そのまま「Continue」をクリックします。

スクリーンショット 2024-05-26 15.25.21.png


クレジットカード情報の入力が完了すると「Billing」画面が以下のような表示に変わります。

スクリーンショット_2024-05-26_15_32_38.png


アプリ作成をやり直すためにダッシュボードから「akase244-hellofly」を選択します。

スクリーンショット 2024-05-26 15.47.00.png

画面左側のメニューから「Settings」をクリックします。

スクリーンショット 2024-05-26 15.48.37.png

「Delete app」をクリックします。

スクリーンショット 2024-05-26 15.49.37.png

アプリ名を入力して、「Yes, delete it」をクリックします。

スクリーンショット 2024-05-26 15.50.21.png


アプリ作成をはじめからやり直すために、ローカル環境の fly.toml を削除します。
※こちらを利用して前回の続きからやる方法もありますが、今回は一旦削除して最初からやり直します。


fly launch を改めて実行し、前回と同じ手順でアプリの作成を行います。

% fly launch --image flyio/hellofly:latest
Using image flyio/hellofly:latest
Creating app in /Users/akase244/repo/akase244_hellofly
We're about to launch your app on Fly.io. Here's what you're getting:

Organization: akase244               (fly launch defaults to the personal org)
Name:         akase244-hellofly      (derived from your directory name)
Region:       Tokyo, Japan           (this is the fastest region for you)
App Machines: shared-cpu-1x, 1GB RAM (most apps need about 1GB of RAM)
Postgres:     <none>                 (not requested)
Redis:        <none>                 (not requested)
Sentry:       false                  (not requested)

? Do you want to tweak these settings before proceeding? Yes
Opening https://fly.io/cli/launch/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ...

Waiting for launch data... Done
Created app 'akase244-hellofly' in organization 'personal'
Admin URL: https://fly.io/apps/akase244-hellofly
Hostname: akase244-hellofly.fly.dev
Wrote config file fly.toml
Validating /Users/akase244/repo/akase244_hellofly/fly.toml
✓ Configuration is valid
==> Building image
Searching for image 'flyio/hellofly:latest' remotely...
image found: img_XXXXXXXXXXXXXXXX

Watch your deployment at https://fly.io/apps/akase244-hellofly/monitoring

Provisioning ips for akase244-hellofly
  Dedicated ipv6: XXXX:XXXX:X::XX:XXXX:X
  Shared ipv4: XXX.XXX.XXX.XXX
  Add a dedicated ipv4 with: fly ips allocate-v4

This deployment will:
 * create 2 "app" machines

No machines in group app, launching a new machine
Creating a second machine to increase service availability
Finished launching new machines
-------
NOTE: The machines for [app] have services with 'auto_stop_machines = true' that will be stopped when idling

-------
Checking DNS configuration for akase244-hellofly.fly.dev

Visit your newly deployed app at https://akase244-hellofly.fly.dev/

実行結果の最後に表示されているURL https://akase244-hellofly.fly.dev/ にブラウザでアクセスすると、以下のように表示されました。

スクリーンショット 2024-05-26 16.06.29.png


fly.tomlinternal_port の値を修正します。

% diff fly.toml fly.toml.orig 
13c13
<   internal_port = 8888
---
>   internal_port = 8080

内部ポートの値を修正した状態で fly deploy コマンドを実行してデプロイを行ってみます。

% fly deploy               
==> Verifying app config
Validating /Users/akase244/repo/akase244_hellofly/fly.toml
✓ Configuration is valid
--> Verified app config
==> Building image
Searching for image 'flyio/hellofly:latest' remotely...
image found: img_XXXXXXXXXXXXXXXX

Watch your deployment at https://fly.io/apps/akase244-hellofly/monitoring

-------
Updating existing machines in 'akase244-hellofly' with rolling strategy

WARNING The app is not listening on the expected address and will not be reachable by fly-proxy.g that XXXXXXXXXXXXXX [app] is up and running
You can fix this by configuring your app to listen on the following addresses:
  - 0.0.0.0:8888
Found these processes inside the machine with open listening sockets:
  PROCESS        | ADDRESSES                              
-----------------*----------------------------------------
  /goapp/app     | [::]:8080                              
  /.fly/hallpass | [XXXX:X:XXXX:XXX:XXXX:XXXX:XXXX:X]:22  


-------
 ✔ [1/2] Machine XXXXXXXXXXXXXX [app] update succeeded
 ✔ [2/2] Machine XXXXXXXXXXXXXX [app] update succeeded
-------
Checking DNS configuration for akase244-hellofly.fly.dev

Visit your newly deployed app at https://akase244-hellofly.fly.dev/

デプロイ自体は成功したようですが、Fly.ioの内部ポートは「8080」で固定のようなので、 internal_port の値を元に戻して、再度デプロイを行いました。

% fly deploy                 
==> Verifying app config
Validating /Users/akase244/repo/akase244_hellofly/fly.toml
✓ Configuration is valid
--> Verified app config
==> Building image
Searching for image 'flyio/hellofly:latest' remotely...
image found: img_XXXXXXXXXXXXXXXX

Watch your deployment at https://fly.io/apps/akase244-hellofly/monitoring

-------
Updating existing machines in 'akase244-hellofly' with rolling strategy

-------
 ✔ [1/2] Machine XXXXXXXXXXXXXX [app] update succeeded
 ✔ [2/2] Machine XXXXXXXXXXXXXX [app] update succeeded
-------
Checking DNS configuration for akase244-hellofly.fly.dev

Visit your newly deployed app at https://akase244-hellofly.fly.dev/

一通り操作感が確認できたので、最後にアプリを削除して今回のデプロイ練習を終わりとします。

スクリーンショット 2024-05-26 16.23.50.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?