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?

aqua.yaml を CLI で楽に作成する

Last updated at Posted at 2024-12-08

はじめに

記事を見てくださりありがとうございます。
@HayatoHanaoka と申します。
aqua.yaml 作成する際に、とてつもなく便利なコマンドがあったのでメモがてら記事にして残します。
一瞬で作成できてめっちゃ便利なので、皆さんもぜひ使ってみてください!

aqua.yamlの初期ファイルの作成

aqua init

コマンド実行で出来上がるファイルの内容

aqua.yaml
---
# aqua - Declarative CLI Version Manager
# https://aquaproj.github.io/
# checksum:
#   enabled: true
#   require_checksum: true
#   supported_envs:
#   - all
registries:
- type: standard
  ref: v4.269.0  # renovate: depName=aquaproj/aqua-registry
packages:

任意のパッケージを aqua.yaml に追加する

aqua g -i

上記コマンドを実行すると、どのパッケージを追加するかを選ぶ画面が出ます。
そこで任意のパッケージを選択してください。
出来上がるファイル(skaffoldを選択した場合)

 ---
# aqua - Declarative CLI Version Manager
# https://aquaproj.github.io/
# checksum:
#   enabled: true
#   require_checksum: true
#   supported_envs:
#   - all
registries:
 - type: standard
  ref: v4.269.0 # renovate: depName=aquaproj/aqua-registry
packages:
+ - name: GoogleContainerTools/skaffold@v2.13.2
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?